#define BLYNK_PRINT Serial
/* Fill in information from Blynk Device Info here */
//#define BLYNK_TEMPLATE_ID "TMPxxxxxx"
//#define BLYNK_TEMPLATE_NAME "Device"
//#define BLYNK_AUTH_TOKEN "YourAuthToken"
#define BLYNK_TEMPLATE_ID "TMPL34canBpyp"
#define BLYNK_TEMPLATE_NAME "Abinaya"
#define BLYNK_AUTH_TOKEN "nHOqR7U8XqFgZY9Kh2ntqeTl-Tx-OM1S"
#include <WiFi.h>
#include <WiFiClient.h>
#include <BlynkSimpleEsp32.h>
// Your WiFi credentials.
// Set password to "" for open networks.
char auth[] = "nHOqR7U8XqFgZY9Kh2ntqeTl-Tx-OM1S";
char ssid[] = "Wokwi-GUEST";
char pass[] = "";
void setup()
{
// Debug console
Serial.begin(9600);
Blynk.begin(BLYNK_AUTH_TOKEN, ssid, pass);
}
void loop()
{
Blynk.virtualWrite(V0,"abi");
Blynk.run();
}