Esp8266 NodeMCU + Arduino IDE

 How to Configure NodeMCU board in Arduino IDE


#esp8266+ArduinoIDE, #espprogramming, #NodemcuProgramming Hello Friends this is Manmohan Pal, in this video i will show you how to Add Esp8266 board to your arduino ide, process is quite simple and it takes few minutes to configure, by using NodeMCU esp8266 we can add IOT to our Projects. Kindly visit my Blog for more details My other Youtube Channel Manmohan Pal https://www.youtube.com/channel/UCDnhARnHOEIPuNIEp5vPdGQ Easy Electronics By Manmohan Pal https://www.youtube.com/channel/UC3o5qRRPPJUhhiHKrJX-yhg NodeMcu Esp8266 by Manmohan Pal https://www.youtube.com/channel/UC4FXFd3RxL-Q1ZERJ4JvqJA Feel free to Contact Manmohan Pal WhatsApp 8989811397 Email- mannmohanpal@gmail.com Blog: https://arduinobymanmohan.blogspot.com/p/transformer-less-powersupply-for.html Youtube Channel: https://www.youtube.com/channel/UCDnhARnHOEIPuNIEp5vPdGQ



Steps to Add Nodemcu to your Arduino IDE

Step 1: Install Arduino IDE


Step 2: Install CP2102 Driver


Step 3: Files> Preference:
http://arduino.esp8266.com/stable/package_esp8266com_index.json


Step 4: Tools> Board Manager : ESP8266 Install












// blink code to be upoloaded on NodeMCU for testing
int pin = 2;

void setup() {
  // initialize GPIO 2 as an output.
  pinMode(pin, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
  digitalWrite(pin, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(1000);               // wait for a second
  digitalWrite(pin, LOW);    // turn the LED off by making the voltage LOW
  delay(1000);               // wait for a second
}



No comments:

Post a Comment

Wifi Home automation Diy kit

 Wifi Home automation Diy kit By Manmohan Pal Wifi Home Automation Kit Hi, This is Manmohan Pal, I am glad to present a DIY kit for Home Aut...