Is there a WiFiManager library that works with Nano ESP32? They seem to have the header missing for this board.
Hi @chillly. It looks like the library is working for the ESP32-S3 microcontroller on the Nano ESP32 board at least:
I think it would be useful to the helpers here if you provided more information about the problem than the incredibly vague "seem to have the header missing".
Please tell us which development environment (e.g., "Arduino IDE", "Arduino Cloud"/"Arduino Web Editor") you are using. If you are using Arduino IDE, tell us which version of Arduino IDE you are using (e.g., "2.2.1").
Hi @ptillisch, I am using Arduino IDE 2.2.1 on Mac OS. To use WiFi Manager I would expect to use #include "WiFiManager.h", but this returns 'Compilation error: WiFiManager.h: No such file or directory'.
I have installed a couple of the variants of WiFiManager, but all return the error. Is this that the authors have to create a header that is suitable for Arduino Nano ESP32?
This one is working on my Nano ESP32: https://dronebotworkshop.com/wifimanager/
Maybe you should reinstall the library.
As this library has a lot of overhead features I decided to use some code for a captive portal based on this example here: Create Captive Portal Using ESP32 – iotespresso.com
Thanks, that works now - it was not the one I had tried. Thanks for your help.