Search found 2 matches

by sf-ing
Fri Feb 08, 2019 4:25 pm
Forum: ESP8266 boards
Topic: upy-websocket-server from Beta_Ravener
Replies: 1
Views: 2228

Re: upy-websocket-server from Beta_Ravener

Hello, I have found a solution with this extract of code: for client in server._clients: print(static_var.ambient_temp) client.connection.write("Send from server to webbrowser") With this code all connected clients get this message. Sometimes there is a long delay (seconds to ten of seconds) between...
by sf-ing
Sun Feb 03, 2019 9:14 am
Forum: ESP8266 boards
Topic: upy-websocket-server from Beta_Ravener
Replies: 1
Views: 2228

upy-websocket-server from Beta_Ravener

Hello, I'm new to this forum and I like to say thank you for this huge information base in micropython programming. I use an ESP8266 as an webserver with websocket function. I have implemented the upy-websocket-server module from here https://github.com/BetaRavener/upy-websocket-server. I can connec...