Example sketches for the new Arduino IDE for ESP8266

Moderator: igrr

User avatar
By JackD
#15664 Can anyone shed some light on why everything works fine until I restart the module. When I restart the module I have to re-upload the sketch for it to work.
User avatar
By juanmol
#16531 Please, can you upload other example, with a "GET" to other webserver with the led's status every time the led changes? Something like:
Code: Select alldigitalWrite(ledPin, HIGH);
client.print("GET http://otherserver:9000/status/on HTTP/1.1\n");

Code: Select alldigitalWrite(ledPin, LOW);
client.print("GET http://otherserver:9000/status/off HTTP/1.1\n");