Sarful Hassan
Published © MIT

How Control an LED Using Espo8266 | IoT Tutorial

How Control an LED Using Espo8266 | IoT Tutorial

BeginnerFull instructions provided1 hour292
How Control an LED Using Espo8266 | IoT Tutorial

Things used in this project

Hardware components

NodeMCU ESP8266 Breakout Board
NodeMCU ESP8266 Breakout Board
×1
LED (generic)
LED (generic)
×1
Resistor 10k ohm
Resistor 10k ohm
×1

Story

Read more

Schematics

How Control an LED Using Espo8266 | IoT Tutorial

How Control an LED Using Espo8266 | IoT Tutorial

Code

Code snippet #1

Plain text
#include <ESP8266WiFi.h>
void setup() {
// Set GPIO 5 as output
pinMode(5, OUTPUT);
// Set GPIO 5 on a HIGH state
digitalWrite(5, HIGH);
}
void loop() {
}

Credits

Sarful Hassan
9 projects • 1 follower
I AM NOT US” Our aim is to present technology to the world in a simple and beautiful way , Our main focus will be on Mechatronics
Contact

Comments

Please log in or sign up to comment.