Add the following snippet to your HTML:<iframe frameborder='0' height='385' scrolling='no' src='https://www.hackster.io/husnakafa556/easy-led-with-blynk-9ecf12/embed' width='350'></iframe>
Led With Blynk In Easy Ways
Read up about this project on
IOT Is so fun, so I make this in Easy ways for you
#include <ESP8266WiFi.h> #include <BlynkSimpleEsp8266.h> #define BLYNK_PRINT Serial char auth[] = "mDQBzCEzQqL9SDQYvNwP4yhv2lDgrk6q"; char ssid[] = "NA"; char pswd[] = "234567ER"; 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.