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

BeginnerProtip556
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

Akshay Joseph

25 projects • 155 followers
B.Sc. Electronics Student at Govt. College Tanur

Comments