//Include the library files
#define BLYNK_PRINT Serial
#include <WiFi.h>
#include <WiFiClient.h>
#include <BlynkSimpleEsp32.h>
// Enter your Auth token
char auth[] = "2pj0cVIdq2pbZusmIOfd7wOE_QymeAll";
//Enter your WIFI SSID and password
char ssid[] = "TUNITA";
char pass[] = "santiagor9";
void setup(){
// Debug console
Serial.begin(9600);
Blynk.begin(auth, ssid, pass, "blynk.cloud", 80);
}
void loop(){
Blynk.run();
}