//Write a code with to control 3 led with the help of relay connected to pin no 13,2 and 0 with the help of blynk console in blynk console there is 3 virtual pin v0,v1,v1 switch connected to relay 13,0,2
#define BLYNK_TEMPLATE_ID "TMPL6Avaozk84"
#define BLYNK_TEMPLATE_NAME "SMART HOME"
#define BLYNK_AUTH_TOKEN "SF_loIzzZjRSnq4Vr6TwRDgo8j-JYSgO"
void setup() {
pinMode(13,OUTPUT);
pinMode(2, OUTPUT);
pinMode(0, OUTPUT);
Serial.begin(9600);
}
void loop() {
digitalWrite(13, HIGH);
Serial.println("Relay ON");
delay(3000);
digitalWrite(13, LOW);
Serial.println("Relay OFF");
delay(3000);
}