Add the following snippet to your HTML:
Now you can control a LED from your smartphone easily
Read up about this project on
I'm just a student and my school give me a project, and this is my project
#include <ESP8266WiFi.h> #include <BlynkSimpleEsp8266.h> #define BLYNK_PRINT Serial char auth [] = "cKpPJfBkC84yMvLrUOwj-P7gFRD0OWzp"; char ssid [] = "Aro"; char pswd [] = "sariayoe"; void setup() { Serial.begin (9600); Blynk.begin (auth,ssid,pswd); } void loop() { Blynk.run (); }
Comments