ESP32 Thing with Thingerio and multiple SSID
A modification to allow more than just 1 WIFI ssid and password. Every time a move the ESP32 thing with thingerio I need to flash it to set different SSIDs... Until NOW :-D
https://github.com/grizmio/Arduino-Library
#define WIFIS_COUNT 3 #include <WiFiClientSecure.h> #include <ThingerESP32.h> void setup(){ ... thing.add_wifi(0, "CASASSID", "foo"); thing.add_wifi(1, "CABANIASSID", "bar"); thing.add_wifi(2, "OFICINASSID", "baz"); ... }















