Add the following snippet to your HTML:<iframe frameborder='0' height='385' scrolling='no' src='https://www.hackster.io/aiawasdctrl/control-an-led-power-now-in-your-hand-a12101/embed' width='350'></iframe>
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 (); }
Please log in or sign up to comment.
Comments
Please log in or sign up to comment.