#define BLYNK_PRINT Serial // include Blynk Serial #include // ESP32 WiFi Library #include #include #define BLYNK_TEMPLATE_ID "TMPL6esYymG9d" #define BLYNK_TEMPLATE_NAME "Quickstart Template" #define BLYNK_AUTH_TOKEN "4tB90nPH06nxhFh-tOwepSe93z5kkLLg" // Enter device Authentication Token char auth[] = "4tB90nPH06nxhFh-tOwepSe93z5kkLLg"; // Your WiFi credentials. // Set password to "" for open networks. char ssid[] = "butter"; char pass[] = "Bart1234"; void setup() { Serial.begin(9600); // Baud rate for serial communication Blynk.begin(auth, ssid, pass, "blynk.cloud", 80); } void loop() { Blynk.run(); }