Naufal Faqiih Ashshiddiq
Published © GPL3+

Making controlled LED with WiFi (Arduino & Blynk)

This project is for beginner

BeginnerFull instructions provided1 hour372
Making controlled LED with WiFi (Arduino & 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
×3

Software apps and online services

Arduino IDE
Arduino IDE
Blynk
Blynk

Story

Read more

Code

A code for making a Wireless LED using Arduino & Blynk

C/C++
How to download Libraries, follow the tutorials in the coding
// Make sure to Download Blynk & Adruino
// Make sure you have internet in your WiFi/Hotspot
// You must to download the Library first

#include <ESP8266WiFi.h> // Download this Library at Tools > Board manager > Download esp8266
#include <BlynkSimpleEsp8266.h> // Download this Library at Sketch > Include Library > Manage Libraries > Download Blynk

#define BLYNK_PRINT Serial
char auth[] = "YourToken"; // This is your Token (Get it on your Blynk Apps)
char ssid[] = "Example"; // This is your WiFi name (No space area Ex: Naufal 123)
char pswd[] = "Example123"; // This is your Password WiFi

void setup() {
  Serial.begin(9600); 
  Blynk.begin(auth,ssid,pswd);

}

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

// Verify it and then Upload it
// Done

Credits

Naufal Faqiih Ashshiddiq
7 projects • 2 followers
Contact

Comments

Please log in or sign up to comment.