I'm trying to make an iot device that connects to my wifi, establishes a socket connection with my golang backend and then starts to send sensor data from the ardunio.
I've got an ardunio uno board and this ESP8266:
I found this websockets library but I don't know if I can import the .h files if I have "arduino uno" selected in the IDE
My question: Is it possible to establish a WebSocket connection with my go backend using the esp model that I have? If so, how can I import the required libraries in the arduno IDE? I would be happy if you could give me some directions.
-
can you communicate with the AT firmware on the module?Juraj– Juraj ♦2018年11月02日 11:09:22 +00:00Commented Nov 2, 2018 at 11:09
1 Answer 1
The library you linked is not for Uno with esp8266 module.
It is possible to use the ESP-01 with Uno for WebSockets client for example with ArduinoHttpClient library over the WiFiEsp library.
Better option is to use only an esp8266 development board programmed with Arduino IDE without the Uno.