Description
Hello! I'm using the wonderful library arduinoWebSockets on ESP32. I want to use a GSM modem to connect my client running on ESP32 with a remote server via Websocket. The SIM800 modem has its own TCP / IP stack and involves working with AT commands. But this mode of operation does not fit.
However, it can be switched to point to point over serial (PPPoS) mode. I'd like to use the TCP Arduino stack with the WebSockets library. Question: Is it possible to connect a websockets connection to a serial interface as the simplest solution? Or do I need to write the TCP Client and Server class for the SIM800 and then include them in the arduino WebSockets library? (I'm new to C ++ (6 months +))
P.S. It would be nice if @Links2004 pays attention to my question :-)
Thank you in advance!