NimmLor / esp8266-fastled-iot-webserver

A universal software for all my LED projects, with many awesome features
https://www.thingiverse.com/surrbradl08/designs
GNU General Public License v3.0
366 stars 94 forks source link

Wemos D1 Mini does not create hotspot #157

Closed Roycinger closed 3 years ago

Roycinger commented 3 years ago

Hi, I recently downloaded the new project which is now using WiFiManager. Unfortunately, the Wemos does not create any hotspot for me after the first initial flash. How can I debug this? Any help is appreciated.

edit: Kinda strange: Setting LED_DEBUG to 1, gave me the following output in the serial monitor: image That's my WiFi that I set up months ago (without WiFiManager). Shouldnt this be cleared? I even ran an EEPROM wipe sketch to get rid of all old data

bb-Ricardo commented 3 years ago

Hi,

The wifi credentials are not stored in the EEPROM.

Just add a wifiManager.resetSettings(); somwhere in setup(), write this to your Wemos, let it reboot and then revert it again. This should delete the credentials properly.

Roycinger commented 3 years ago

That did the trick, thank you very much @bb-Ricardo