-->
Page 3 of 3

Re: Simple Examples of webserver

PostPosted: Sun Apr 26, 2015 5:19 am
by JackD
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.

Re: Simple Examples of webserver

PostPosted: Sun Apr 26, 2015 4:50 pm
by swilson
You don't by chance still have gpio0 pulled low when you restart do you?

Re: Simple Examples of webserver

PostPosted: Mon Apr 27, 2015 6:09 am
by JackD
Yes you are right I always forget about the gpio0 pin. It works now. Thanks

Re: Simple Examples of webserver

PostPosted: Tue May 05, 2015 4:26 am
by juanmol
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");