Hackster is hosting Hackster Holidays, Ep. 7: Livestream & Giveaway Drawing. Watch previous episodes or stream live on Friday!Stream Hackster Holidays, Ep. 7 on Friday!
Akshay Joseph
Published © GPL3+

Get Started With NodeMCU (Program using Arduino IDE)

IoT is developing day by day. This article will help to get started with NodeMCU

BeginnerProtip566
Get Started With NodeMCU (Program using Arduino IDE)

Things used in this project

Hardware components

NodeMCU
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Code

Blink

Arduino
void setup() {
pinMode(D0,OUTPUT);

}

void loop() {
 digitalWrite(D0,HIGH);
 delay(1000);
 digitalWrite(D0,LOW);
  delay(1000);
}

Credits

Akshay Joseph
25 projects • 157 followers
B.Sc. Electronics Student at Govt. College Tanur

Comments