iriandaabdullah
Published © GPL3+

LED With Blynk

Control Led With Blynk

BeginnerFull instructions provided1 hour407
LED With Blynk

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

Arduino IDE
Arduino IDE

Story

Read more

Code

led with Blynk

C/C++
#include <ESP8266WiFi.h>          // library untuk nyambung dari nodemcu ke wifi
#include <BlynkSimpleEsp8266.h>   // ini library blynk


#define BLYNK_PRINT Serial
char auth[] = "xxxxxxxxxxxxxxxxxxxxxx";
char ssid[] = "xxxxxxxxxxxx"; // sesuai dengan ssid kalian
char pswd[] = "xxxxxxxxxxx";        // sesuai dengan passwword kalian
void setup() {
 Serial.begin(9600);
 Blynk.begin(auth,ssid,pswd);
}
void loop() {
 Blynk.run();
}

Credits

iriandaabdullah

iriandaabdullah

5 projects • 2 followers
Iam a web frontend and android developer, I went to college in the Information Technology major.

Comments