Skip to content

Releases: GerLech/WebConfig

Bug Fix

19 Apr 08:19
fc055f1

Choose a tag to compare

Fix problem with new version of Arduino JSON

Bugfix

09 Jan 16:31
f776f75

Choose a tag to compare

fixed error on deleteConfig function

New input types INPUTTEXTAREA and INPUTMULTICHECK

17 Apr 09:34
9b3ec3e

Choose a tag to compare

New input types on user demand.

  • INPUTTEXTAREA 11 Text area with multiple lines

  • INPUTMULTICHECK 12 Fieldset with multiple checkboxes. The result string has one character
    0 or 1 for every option. 010010 means there are 6 options and option 2 nand 5 are true

Somer Compiler warnings were fixed too.

Bug Fix

10 Feb 10:11
b8ade99

Choose a tag to compare

Fixed wrong datatype in setButtons

Fixed wrong spelled include file

22 Aug 11:28
bca87c0

Choose a tag to compare

New form mode

02 Jul 09:08
855f5b2

Choose a tag to compare

It is now possible to show a simple form without automatic save. These forms can have one or more buttons (DONE, CANCEL, DELETE).
Callback functions on button click allows to return to another web page after configuration was done.

Added new Functions

05 Feb 13:09
d0391d5

Choose a tag to compare

The following functions have been added

//Get results as a JSON string
String getResults();
//set the value for a parameter
void setValue(const charname,String value);
//set the label for a parameter
void setLabel(const char * name, const char
label);
//remove all options
void clearOptions(uint8_t index);
void clearOptions(const char * name);
//add a new option
void addOption(uint8_t index, String option);
void addOption(uint8_t index, String option, String label);
//modify an option
void setOption(uint8_t index, uint8_t option_index, String option, String label);
void setOption(char * name, uint8_t option_index, String option, String label);
//get the options count
uint8_t getOptionCount(uint8_t index);
uint8_t getOptionCount(char * name);

Minor fixes

02 Dec 15:25
3bd8cdd

Choose a tag to compare

In the header file was a weong include file for web server Webserver.h in place of WebServer.h. This affected only usage with ESP32.
There was also an errornous link in properties file

First Release

09 Nov 16:53
92b2eda

Choose a tag to compare

Initial post