gilmaimon / ArduinoWebsockets

A library for writing modern websockets applications with Arduino (ESP8266 and ESP32)
GNU General Public License v3.0
480 stars 96 forks source link

Connecting with GSM Module #113

Open coder-KO opened 3 years ago

coder-KO commented 3 years ago

Is there a way to connect to a WebSocket server using GPRS via a GSM Module like Sim800L or a TTGO Tcall (which is essentially an ESP32 Dev board with embedded Sim 800L) using the TinyGSM Library or any other library for that matter?

gilmaimon commented 3 years ago

So, the library does not support those platforms currently. You can, however implement your own tcp handlers for your platform. See this PR for example, which did it for the Teensy 4.1: https://github.com/gilmaimon/ArduinoWebsockets/pull/93