nawfaldo
Published © GPL3+

Led with Blynk

Do you want to make led with Blynk but doesn't know how to make it? well i'll help with you with with that

BeginnerProtip1 hour301
Led with Blynk

Things used in this project

Hardware components

NodeMCU ESP8266 Breakout Board
NodeMCU ESP8266 Breakout Board
×1
LED (generic)
LED (generic)
×1

Software apps and online services

Arduino IDE
Arduino IDE
Blynk
Blynk

Story

Read more

Code

Untitled file

C/C++
#define BLYNK_PRINT Serial
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>

// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "**********************"; //Token blynk yg di email

// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "Start"; //nama wifi
char pass[] = "1234567890"; //password wifi

void setup()
{
// Debug console
Serial.begin(9600);

Blynk.begin(auth, ssid, pass);
}

void loop()
{
Blynk.run();
}

Credits

nawfaldo
9 projects • 0 followers
Contact

Comments

Please log in or sign up to comment.