-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
websockets? #68
Comments
Perhaps write it as an Extensions file, using the new facility introduced in uLisp release 4.4? |
I could, but it involves adding a new stream so it would involve editing the |
True. What are the benefits and potential applications for such a feature? |
I think the biggest benefit is that once the socket connection is established, the microcontroller can push data to all of the web pages that have established websocket connections, and they don't have to poll repeatedly and overload the microcontroller with having to parse a gazillion HTTP requests. |
I found an Arduino websockets library that works with the existing wifi library: https://github.com/gilmaimon/ArduinoWebsockets
It seems simple enough to implement similar websocket functions as the existing wifi functions in uLisp, as the interface is so similar.
As an implementation note, it does look like
server.available()
doesn't get you a client, it instead returns if the websocket server is running.server.accept()
actually gets the client, but will block if there is no client,server.poll()
returns true if there is a waiting client.As for the client end, because the design of websockets is to push data without being requested, not respond to a request as regular HTTP is, actually getting data from the websocket using the callback will probably involve some sort of queue to pipe the data from the client callback to the
gfun_t
of thewebsocket-stream
.The text was updated successfully, but these errors were encountered: