fork download
#define BLYNK_PRINT Serial

#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "fhiQ_aTtrFIHgi_KWdIh9XSAw27WBiSX";
BLYNK_TEMPLATE_NAME "SMART LOCK SYSTEM"
// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "Lsm Kutty";
char pass[] = "12345688";
void setup()
{
// Debug console
Serial.begin(9600);
Blynk.begin(auth, ssid, pass);
// You can also specify server:
//Blynk.begin(auth, ssid, pass, "blynk-cloud.com", 80);
//Blynk.begin(auth, ssid, pass, IPAddress(192,168,1,100), 8080);
}
void loop()
{
Blynk.run();
// You can inject your own code or combine it with other sketches.
// Check other examples on how to communicate with Blynk. Remember
// to avoid delay() function!
}
Success #stdin #stdout 0.02s 25864KB
stdin
Standard input is empty
stdout
#define BLYNK_PRINT Serial

#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "fhiQ_aTtrFIHgi_KWdIh9XSAw27WBiSX";
BLYNK_TEMPLATE_NAME "SMART LOCK SYSTEM"
// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "Lsm Kutty";
char pass[] = "12345688";
void setup()
{
// Debug console
Serial.begin(9600);
Blynk.begin(auth, ssid, pass);
// You can also specify server:
//Blynk.begin(auth, ssid, pass, "blynk-cloud.com", 80);
//Blynk.begin(auth, ssid, pass, IPAddress(192,168,1,100), 8080);
}
void loop()
{
Blynk.run();
// You can inject your own code or combine it with other sketches.
// Check other examples on how to communicate with Blynk. Remember
// to avoid delay() function!
}