Install ESP8266 Board in Arduino IDE in less than 1 minute

This is a quick guide to installing the ESP8266 board in Arduino IDE in less than 1 minute on a Windows PC, Mac OS X, or Linux computer.

An add-on for the Arduino IDE created by the ESP8266 community allows you to program the ESP8266 using the Arduino IDE and its programming language.

Whether you're using Windows, Mac OS X, or Linux, this tutorial shows how to install the ESP8266 board in the Arduino IDE.

Prerequisites: Arduino IDE Installed

Make sure you have the latest version of the Arduino IDE installed on your computer before you start this installation process. If not, uninstall it and then reinstall it. It may not work otherwise.

Continue with this tutorial after installing the latest Arduino IDE at arduino.cc/en/Main/Software.

You need an ESP8266 board, right? You can buy it right here.

Install ESP8266 Add-on in Arduino IDE

To install the ESP8266 board in your Arduino IDE, follow these next instructions:

1- In your Arduino IDE, go to FilePreferences.

Install ESP8266 Board add on in Arduino IDE open preferences

2- The “Additional Boards Manager URLs” field should be filled up with http://arduino.esp8266.com/stable/package_esp8266com_index.json, as shown in the figure below. After that, click “OK“.

Install ESP8266 Board add on in Arduino IDE enter URL

Note: If you already know the ESP32 board URL, do as follows to comma-separate the URLs:

https://dl.espressif.com/dl/package_esp32_index.json, http://arduino.esp8266.com/stable/package_esp8266com_index.json

3- Open the Boards Manager. Go to Tools > Board > Boards Manager…

Install ESP8266 Board add on in Arduino IDE open boards manager

4- Search for ESP8266 and press the install button for “ESP8266 by ESP8266 Community“:

Install ESP8266 Board add on in Arduino IDE search ESP8266

5- That’s it. It should be installed after a few seconds.

ESP8266 Board add on in Arduino IDE installed

Read More: How to Flash NodeMCU Firmware on ESP8266 using Windows

Testing the Installation

Let's test the ESP8266 add-on installation by using the Arduino programming language to see if we can get the ESP8266 to blink an LED.

Parts Required

Here’s the hardware that you need to complete this project:

You also need an FTDI programmer to upload code if you're using the ESP8266-01.

You can use the preceding links to find all the parts for your projects at the best price!

Uploading the Sketch

Uploading the Sketch to the ESP-12E

Using an ESP-12E NodeMCU Kit, uploading the sketch is fairly simple since it includes a built-in programmer. Connect your board to the computer. Ensure that you select the right board.

Install ESP8266 Board add on in Arduino IDE select board

You also need to select the Port:

Install ESP8266 Board add on in Arduino IDE select COM port

Then, copy the code provided:

/*********
  LEDEdit PRO
  Complete project details at https://lededitpro.com  
*********/

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
}

Wait a few seconds until you see the message “Done uploading“. in the bottom left corner after clicking the “Upload” button in the Arduino IDE.

blinking an led esp8266 upload

Uploading the Sketch to the ESP-01

As shown in the schematic diagram below, uploading code to the ESP-01 serial communication program requires establishing serial communication between your ESP8266 and an FTDI programmer.

ESP8266 Flasher

The following table shows the connections between the ESP8266 and the FTDI programmer that you will need to make.

ESP8266FTDI programmer
RXTX
TXRX
CH_PD3.3V
GPIO 0GND
VCC3.3V
GNDGND

Visit this website for the official drivers: http://www.ftdichip.com/Drivers/VCP.htm if you have a brand-new FTDI Programmer and need to install your FTDI drivers on a Windows PC.

You just need to connect the FTDI programmer to your computer and upload the sketch to your ESP8266 board. After a few seconds, you should see the “Done Uploading” message.

Read More: ESP8266 NodeMCU With BH1750 Ambient Light Sensor Using Arduino

Schematics

If you’re using an ESP8266-12E

Connect an LED to your ESP8266, as shown in the following schematic diagram. GPIO 2 (D4) should be connected to the LED.

esp8266 blinking led arduino ide bb

If you’re using an ESP8266-01

If you’re using the ESP8266-01, assemble the following circuit:

ESP8266 Blinking an LED

If everything went well, your LED should be blinking every 1 second.

Troubleshooting

If you try to upload a new sketch to your ESP8266 and you get this error message: “esptool.FatalError: Failed to connect to ESP8266: Timed out waiting for packet header”. It means that your ESP8266 is not in flashing or uploading mode.

Failed to connect to ESP8266 Timed out

Follow these steps after selecting the right board name and COM port:

  • Hold down the “BOOT/FLASH” button on your ESP8266 development board.
  • Press the “Upload” button in the Arduino IDE to upload your sketch.
Arduino ide upload button
  • When you see the “Connecting…” message in your Arduino IDE, release the finger from the “BOOT/FLASH” button.
  • After that, you should see the “Done uploading” message.

The new sketch should be running on your ESP8266. To restart the ESP8266 and run the newly uploaded sketch, press the “ENABLE/RESET” button.

Oh hi there It’s nice to meet you.

Sign up to receive awesome content in your inbox, every month.

We don’t spam! Read our privacy policy for more info.

Leave a Reply

Your email address will not be published. Required fields are marked *

ESP8266 Home Automation Projects

Leverage the power of this tiny WiFi chip to build exciting smart home projects