#define THINGER_SERIAL_DEBUG
#include <ThingerESP32.h>
#define USERNAME "archanadeiva"
#define DEVICE_ID "ESP32_LED"
#define DEVICE_CREDENTIAL "hello@123"
#define SSID "Wokwi-GUEST"
#define SSID_PASSWORD ""

ThingerESP32 thing(USERNAME, DEVICE_ID, DEVICE_CREDENTIAL);
void setup() {
  // open serial for debugging
  Serial.begin(115200);

  pinMode(2, OUTPUT);
  thing.add_wifi(SSID, SSID_PASSWORD);
  // digital pin control example (i.e. turning on/off a light, a relay, configuring a parameter, etc)
  thing["pb"] << digitalPin(2);
  // resource output example (i.e. reading a sensor value)
  thing["millis"] >> outputValue(millis());
  // more details at http://docs.thinger.io/arduino/
}
void loop() {
  thing.handle();
}



esp:0
esp:2
esp:4
esp:5
esp:12
esp:13
esp:14
esp:15
esp:16
esp:17
esp:18
esp:19
esp:21
esp:22
esp:23
esp:25
esp:26
esp:27
esp:32
esp:33
esp:34
esp:35
esp:3V3
esp:EN
esp:VP
esp:VN
esp:GND.1
esp:D2
esp:D3
esp:CMD
esp:5V
esp:GND.2
esp:TX
esp:RX
esp:GND.3
esp:D1
esp:D0
esp:CLK
led1:A
led1:C
r1:1
r1:2