#define BLYNK_TEMPLATE_ID "TMPL6cxMXnbA-"
#define BLYNK_TEMPLATE_NAME "wokwiled"
#define BLYNK_AUTH_TOKEN "7TuYpRJKdNvdmmLz5vEn64M9M9BQaabD"
/* Comment this out to disable prints and save space */
#define BLYNK_PRINT Serial
#include <WiFi.h>
#include <WiFiClient.h>
#include <BlynkSimpleEsp32.h>
// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "Wokwi-GUEST";
char pass[] = "";
void setup()
{
// Debug console
Serial.begin(115200);
Blynk.begin(BLYNK_AUTH_TOKEN, ssid, pass);
}
void loop()
{
Blynk.run();
delay(100); //delay for simulation
}