Can I alternate between server and client using an ESP8266Wifi for the networking device? #516
Replies: 7 comments
-
Posted at 2015-12-16 by @gfwilliams That's interesting - I wonder, does it still work as a server after that error? The ESP8266 is reporting Does it work if you do |
Beta Was this translation helpful? Give feedback.
-
Posted at 2015-12-16 by Snerkle Hmmm...
I never thought to check that - and yes it does work, the server is running again. The scenario I am wanting to handle it to have a web server running most of the time, but I periodically (every 10 minutes) want to make a client call as I'm using the reponse.headers.Date from a reliable, local source to reset the time on the Pico with a call to setTime() because I am normally loosing a second every minute on the built-in RTC. SO if you have another solution for that I'm all ears. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2015-12-16 by Snerkle OK call me rash. It worked on one cycle: |
Beta Was this translation helpful? Give feedback.
-
Posted at 2015-12-16 by Snerkle Also tested issuing another |
Beta Was this translation helpful? Give feedback.
-
Posted at 2015-12-16 by @gfwilliams Which ESP8266 firmware do you have? 0.25? It looks to me like the ESP8266 driver isn't actually closing the server when you say close... So it's possible the page is wrong and you actually can do TCP/IP requests while having a server. Might be worth a try? But I'll have to fix the driver so that it properly closes the server. A hack for now would be (I think):
|
Beta Was this translation helpful? Give feedback.
-
Posted at 2015-12-16 by @gfwilliams Ok, I've just updated the drivers. Next time you click |
Beta Was this translation helpful? Give feedback.
-
Posted at 2015-12-16 by Snerkle Yes, I'm using 0.25 If I don't close the server, I can't make a get(client) request. If I do I get the following error
I'll put this to the test over time and make a final post in a day or so to let you know that it is working reliably without any fringe conditions. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2015-12-16 by Snerkle
On the ESP8266 WIFI MODULE page at http://www.espruino.com/ESP8266 under the heading GOTCHAS, it is very clear
In my mind this hinges on the word "active".
So I've used http://www.espruino.com/Reference#t_l_httpSrv_close to close a running http server and can then do a client require("http").get(...) successfully.
However, when I try to restart the server using another http://www.espruino.com/Reference#t_l_httpSrv_listen
I get the following error:
Is there a way to restart the server or do I need to "createServer" again: seems wasteful?
Beta Was this translation helpful? Give feedback.
All reactions