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