srwi / FastLEDHub

Control multiple FastLED lightstrip animations on the ESP8266 and ESP32 without reuploading.
GNU Lesser General Public License v2.1
53 stars 2 forks source link

WLAN #16

Closed Guenni75 closed 1 year ago

Guenni75 commented 1 year ago

Hello. Where are the WLan Settings???

srwi commented 1 year ago

FastLEDHub uses WiFiManager to manage wifi settings. Rather than instantiating a new WiFiManager instance you can access its settings via the existing instance like this:

#include <ESPEssentials.h>
...
ESPEssentials::Wifi.resetSettings();

For more information on how to use WiFiManager, please have a look here.