tzapu / WiFiManager

ESP8266 WiFi Connection manager with web captive portal
http://tzapu.com/esp8266-wifi-connection-manager-library-arduino-ide/
MIT License
6.6k stars 1.98k forks source link

Hotspot not shown #843

Open JohannesSchwegler opened 5 years ago

JohannesSchwegler commented 5 years ago

I tried the following code, but there is no hotspot or access point shown when i upload it to my esp8266. Does somebody know why?

Code:

include //https://github.com/esp8266/Arduino

//needed for library

include

include

include //https://github.com/tzapu/WiFiManager

void setup() { // put your setup code here, to run once: Serial.begin(115200);

//WiFiManager
//Local intialization. Once its business is done, there is no need to keep it around
WiFiManager wifiManager;
//reset saved settings
//wifiManager.resetSettings();

//set custom ip for portal
//wifiManager.setAPStaticIPConfig(IPAddress(10,0,1,1), IPAddress(10,0,1,1), IPAddress(255,255,255,0));

//fetches ssid and pass from eeprom and tries to connect
//if it does not connect it starts an access point with the specified name
//here  "AutoConnectAP"
//and goes into a blocking loop awaiting configuration
wifiManager.autoConnect("AutoConnectAP");
//or use this for auto generated name ESP + ChipID
//wifiManager.autoConnect();

//if you get here you have connected to the WiFi
Serial.println("connected...yeey :)");

}

void loop() { // put your main code here, to run repeatedly:

shamasis commented 5 years ago

I am pretty new to this. Uploaded the precompiled bin to my Amica NodeMCU v2 https://blog.christophermullins.com/2017/02/11/milight-wifi-gateway-emulator-on-an-esp8266/

LED is blinking every second, but not seeing the ESPXXXX SSID on any device. Thoughts?

tablatronix commented 5 years ago

You did not fill out form or provide any information