#define BLYNK_PRINT Serial
#define BLYNK_TEMPLATE_ID "TMPL6euNXqaWN"
#define BLYNK_TEMPLATE_NAME "LAMPU"
#define BLYNK_AUTH_TOKEN "h06VcHl9jT243ofZzSA77usYfnW5-OE1"
#define LED 4
#include <WiFi.h>
#include <WiFiClient.h>
#include <BlynkSimpleEsp32.h>
char auth[] = "h06VcHl9jT243ofZzSA77usYfnW5-OE1";
char ssid[] = "Wokwi-GUEST";
char pass[] = "";
BlynkTimer timer;
BLYNK_WRITE(V2)
{
int pinValue = param.asInt();
digitalWrite(LED,pinValue);
}
void setup()
{
Serial.begin(9600);
Blynk.begin(auth, ssid, pass);
pinMode(LED, OUTPUT);
}
void loop()
{
Blynk.run();
timer.run();
}