GerLech / WebConfig

For ESP8266 and ESP32 edit configuration with web page and save it on SPIFFS. If no connection to a local WLAN exists configuration over web page can be done using an access point
GNU Lesser General Public License v3.0
78 stars 17 forks source link

User interface not reachable #1

Closed vergissberlin closed 4 years ago

vergissberlin commented 4 years ago

Hi @GerLech !

this project is still in progress, right? I really like your way how you set up the form. Unfortunately, I wasn't able to see the form. There was no captive portal page or so like in other libraries of this type.

kind regards André

GerLech commented 4 years ago

Hi vergissberlin Have you tried the example sketch? This should work for ESP8266 and ESP32. You need to have SPIFFS space reserved. To see the Form you need to start a webserver and you have to create the on request callback function in your sketch. In this function you can call the handleFormRequest function from WebConfig instance. This function publish the form top the web server passed as the first parameter. I hope this helps.

vergissberlin commented 4 years ago

I see! I tried the demo8266 with my wemos d1 mini. My expectation was to have a webserver included in the demo. Thank you!