Rakha Fatih
Published

Led + blynk

Hi im new

IntermediateShowcase (no instructions)10
Led + blynk

Things used in this project

Hardware components

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

Software apps and online services

Blynk
Blynk

Story

Read more

Code

ledblynk.ino

Arduino
#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
char ssid[] = "********"; //nama wifi
char pass[] = "********"; //password wifi

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

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

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

Credits

Rakha Fatih
9 projects • 2 followers

Comments