Thinger.io is a wonderful platform and it would be fantastic if we can connect the Cactus Micro R2 to your platform. However, it is not clear to me how to connect them because on the documentation page you require the use of WiFi.h or ESP8266WiFi.h libraries to establish a WiFi connection. Do you have any suggestions for espduino library?
Hi @Giuseppe_Desolda! I have updated the library in Github, you can install the new library (2.6.0), and test the ESP8266AT example, that should work with this board. You may need to change the Serial configuration to talk with the ESP8266 module. Let me know if it works for you!
You can install the TinyGSM library directly from the Library Manager (this one works for me). Maybe the one that is downloaded from the master branch is a different one. Also try to restart the Arduino IDE to detect the library properly.
Seems that the example uses Serial1 by default. Remove the following lines in order to make sure you are using the right serial and not the software one.
// Emulate Serial1 on pins 10/11 if HW is not present (use interrupt pins for better performance)
#ifndef HAVE_HWSERIAL1
#include "SoftwareSerial.h"
SoftwareSerial Serial1(10,11); // RX, TX
#endif