Example sketches for the new Arduino IDE for ESP8266

Moderator: igrr

User avatar
By Marion Boynton
#85361 Hello :D

I am currently having the same issue on a mac and wondering if any of you came to any solutions? The local host does not resolve. (but the responder starts and I can ping the IP address)

I was also following this guide https://tttapa.github.io/ESP8266/Chap08%20-%20mDNS.html and have searched extensively for solutions but am yet to find one...

Any advice would be amazing! Thanks! x
User avatar
By adihashx
#93675 Hello

I know it's been a while, but i found the solution.
If you are following the guide at https://tttapa.github.io/ESP8266/Chap10%20-%20Simple%20Web%20Server.html, simply add
Code: Select allMDNS.update();
in the main loop.

E.g.
Code: Select allvoid loop(void){
    MDNS.update();                         
    server.handleClient();                    // Listen for HTTP requests from clients
}


Hope it's working now for y'all ;)