#define BLYNK_PRINT Serial
#define BLYNK_TEMPLATE_ID "TMPL6funol_uE"
#define BLYNK_TEMPLATE_NAME "passport rzz"
#define BLYNK_AUTH_TOKEN "9cMTQeIeKScQikurw9ZO_aOMiwc0OelP"

#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!");
  pinMode(27, OUTPUT);
  Blynk.begin(auth, ssid, pass);
}
BLYNK_WRITE(V0){
int value1 = param.asInt();
digitalWrite(27, value1);
}
void loop() {
Blynk.run();
}