Hieromon / AutoConnect

An Arduino library for ESP8266/ESP32 WLAN configuration at runtime with the Web interface
https://hieromon.github.io/AutoConnect/
MIT License
911 stars 190 forks source link

ACCheckbox/AutoConnectCheckbox doesn't work for esp8266 from AutoConnect 1.3.7 #561

Closed Evgen2 closed 1 year ago

Evgen2 commented 1 year ago

CheckBoxIssue.zip Construction like

ACText(Caption, "Hello, world", "", "", AC_Tag_DIV);
ACCheckbox(ChB1, "chb", "chb");
//or AutoConnectCheckbox ChB1("ChB1","1", "m", false, AC_Behind , AC_Tag_BR);
ACSubmit(Apply, "Apply", HELLO_URI);
// AutoConnectAux for the custom Web page.
AutoConnectAux helloPage(HELLO_URI, "Hello", true, { Caption, ChB1,  Apply });

work well for esp8266 with AutoConnect 1.3.3 and lead to Exeption(3) with 1.3.7 or 1.41 Code for esp32 work ex3

Hieromon commented 1 year ago

I have reproduced the issue. It is AutoConnect bug. The readout from PROGMEM is missing.

I will fix it soon and release as AutoConnect v1.4.2. You can evaluate the fix ​before the release with the patches/553 branch.

Thank you for reporting the issue.

Hieromon commented 1 year ago

Merged #575