aiawasdctrl
Published © GPL3+

Control an LED power now in your hand

Now you can control a LED from your smartphone easily

BeginnerFull instructions provided1 hour515
Control an LED power now in your hand

Things used in this project

Hardware components

NodeMCU ESP8266 Breakout Board
NodeMCU ESP8266 Breakout Board
×1
LED (generic)
LED (generic)
×1
Female/Female Jumper Wires
Female/Female Jumper Wires
×1

Software apps and online services

Blynk
Blynk
Arduino IDE
Arduino IDE

Story

Read more

Code

LED Blynk code

C/C++
#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 ();

}

Credits

aiawasdctrl
6 projects • 0 followers
Contact

Comments

Please log in or sign up to comment.