#define BLYNK_PRINT Serial
#define BLYNK_TEMPLATE_ID "TMPL6kqN6B8D_"
#define BLYNK_TEMPLATE_NAME "lampu"
#define BLYNK_AUTH_TOKEN "__8iLFkr_HrUxSLiIdq0cqWhgyuF1odV"
#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
}