#define BLYNK_TEMPLATE_ID "TMPL66WcGKIZJ"
#define BLYNK_TEMPLATE_NAME "blink"
#define BLYNK_AUTH_TOKEN "3GvWlyr0akiR1nnBXHcYppclzcNyLp8d"
#define BLYNK_PRINT Serial
#include <WiFi.h>
#include <WiFiClient.h>
#include <BlynkSimpleEsp32.h>
char ssid[] = "Wokwi-GUEST";
char pass[] = "";
void setup()
{
Serial.begin(115200);
Blynk.begin(BLYNK_AUTH_TOKEN, ssid, pass);
}
void loop()
{
Blynk.run();
// You can inject your own code or combine it with other sketches.
// Check other examples on how to communicate with Blynk. Remember
// to avoid delay() function!
}