You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just found your library, and haven't browsed your code yet to see how difficult it would be...
I would like ot propose adding a TCP/IP socket interface to your library, enabling it to talk to Arduinos using the serial-to-wifi modules, like the ESP-8266, since these are very inexpensive, and easy to configure (I'm using several in Arduino projects already), and they present like any other serial-connection, once configured (all of the WiFi work happens on the ESP module).
Thanks for the library!
The text was updated successfully, but these errors were encountered:
Central piece of the library is the ArduinoSession class. It needs an object implementing the ISerialConnection interface to do its work. So, I guess we would only have to design a connection class that uses a TCP/IP socket instead of the serial port.
Do you know of a C# example connecting to the ESP-8266? You are welcome to use and/or contribute to the library. When you think it is useful, please consider to give it a star.
Status update: earlier this week I started development of an 'IPSocketConnection' class supporting network-connected devices like the ESP-8266. Things are looking promising!
I just found your library, and haven't browsed your code yet to see how difficult it would be...
I would like ot propose adding a TCP/IP socket interface to your library, enabling it to talk to Arduinos using the serial-to-wifi modules, like the ESP-8266, since these are very inexpensive, and easy to configure (I'm using several in Arduino projects already), and they present like any other serial-connection, once configured (all of the WiFi work happens on the ESP module).
Thanks for the library!
The text was updated successfully, but these errors were encountered: