After long time I needed to reprogram my ESP8266 NodeMCU. Looking back into my older blogpost I came to know that I have not written any note on how I programmed it when I used it for the first time. So this time I wanted to write a note on how I am programming it and the errors and the troubleshooting I have taken.
Step 1: Setting Up the Arduino IDE
To program the ESP8266 NodeMCU, we will use the Arduino IDE v 1.8 and python v 3.8. If you don't already have it installed, download and install it from the [Arduino website](https://www.arduino.cc/en/software).
Installing the ESP32 Board in Arduino IDE
- Open the Arduino IDE.
- Navigate to
File>Preferences. - In the "Additional Board Manager URLs" field, paste the following URL:http://arduino.esp8266.com/stable/package_esp8266com_index.json
- Click OK.
- Go to
Tools>Board>Boards Manager. - Search for esp8266 by "ESP8266 Community" in the Boards Manager window.
Now the ESP8266 board package should be installed in your Arduino IDE.
2. Install the CH340 driver for ESP8266 NodeMCU
Tags:
NodeMCU

