chriscook8 / esp-arduino-apboot

ESP8266 wifi configurator in Arduino lang.. uses eeprom for configs, boots to AP mode if no working config found
153 stars 61 forks source link

Error setting up MDNS responder! #10

Open chakree10 opened 7 years ago

chakree10 commented 7 years ago

as it is clear regarding the problem! kindly help me figure it out where it went wrong with code. I'm using esp8266 12 node mcu v0.9

muminkoykiran commented 6 years ago

If you make it like that you can work it without problem. But it is not fix this problem, just ignore those lines screenshot_4

Vivsa commented 6 years ago

I followed remark from https://github.com/aekarpenko on the issue "#3" that says

You need WiFi.mode(WIFI_AP); before WiFi.softAP(ssid); Without setting mode, mdns.begin("esp8266") returns false.

Following that, I added line WiFi.mode(WIFI_AP) before the line WiFi.softAP(ssid); in my sketch and compiled it. Now it does NOT give me Error for setting up MDNS responder