#define BLYNK_PRINT Serial
#define BLYNK_TEMPLATE_ID "TMPL6GQ4uUrnP"
#define BLYNK_TEMPLATE_NAME "lampuu"
#define BLYNK_AUTH_TOKEN "H8GMNWd7BndPgpWiRrvAaD94mt3H1Zc1"
#include <WiFi.h>
#include <WiFiClient.h>
#include <BlynkSimpleEsp32.h>
char auth[] = BLYNK_AUTH_TOKEN;
char ssid[] = "Wokwi-GUEST";
char pass[] = "";
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
Blynk.begin(auth, ssid, pass);
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}