Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (2024)

Learn how to program the ESP32 and ESP8266 NodeMCU boards using VS Code (Microsoft Visual Studio Code) with PlatformIO IDE extension. We cover how to install the software on Windows, Mac OS X or Ubuntu operating systems.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (1)

The Arduino IDE works great for small applications. However, for advanced projects with more than 200 lines of code, multiple files, and other advanced features like auto completion and error checking, VS Code with the PlatformIO IDE extension is the best alternative.

In this tutorial, we’ll cover the following topics:

  • Installing VS Code (Visual Studio Code):
    • A) Windows
    • B) Mac OS X
    • C) Linux Ubuntu
  • Installing PlatformIO IDE Extension on VS Code
  • Visual Studio Quick Interface Overview
  • PlatformIO IDE Overview
  • Uploading Code using PlatformIO IDE: ESP32/ESP8266
  • Changing the Serial Monitor Baud Rate – PlatformIO IDE
  • Installing Libraries on PlatformIO IDE

A) Installing VS Code on Windows (Visual Studio Code)

Go to https://code.visualstudio.com/ and download the stable build for your operating system (Windows).

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (2)

Click on the installation wizard to start the installation and follow all the steps to complete the installation. Accept the agreement and press the Next button.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (3)

Select the following options and click Next.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (4)

Press the Install button.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (5)

Finally, click Finish to finish the installation.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (6)

Open VS Code and you’ll be greeted by a Welcome tab with the released notes of the newest version.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (7)

That’s it. Visual Studio Code was successfully installed.

Installing Python on Windows

To program the ESP32 and ESP8266 boards with PlatformIO IDE you need Python 3.5 or higher installed in your computer. We’re using Python 3.8.5.

Go to python.org/download and download Python 3.8.5 or a newest version.

Open the downloaded file to start the Python installation wizard.

The following window shows up.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (8)

IMPORTANT: Make sure you check the option Add Python 3.8 to PATH. Then, you can click on the Install Now button.

When the installation is successful you’ll get the following message.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (9)

You can click the Close button.

Now, go to this section to install PlatformIO IDE extension.

B) Installing VS Code on Mac OS X (Visual Studio Code)

Go to https://code.visualstudio.com/ and download the stable build for your operating system (Mac OS X).

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (10)

After downloading the Visual Studio Code application file, you’ll be prompted with the following message. Press the “Open” button.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (11)

Or open your Downloads folder and open Visual Studio Code.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (12)

After that, you’ll be greeted by a Welcome tab with the released notes of the newest version.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (13)

That’s it. Visual Studio Code was successfully installed.

Installing Python on Mac OS X

To program the ESP32 and ESP8266 boards with PlatformIO IDE you need Python 3.5 or higher installed in your computer. We’re using Python 3.8.5.

To install Python I’ll be using Homebrew. If you don’t have the brew command available, type the next command:

$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (14)

Then, run the brew command to install Python 3.X:

$ brew install python3
Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (15)

Now, go to this section to install PlatformIO IDE extension.

C) Installing VS Code on Linux Ubuntu (Visual Studio Code)

Go to https://code.visualstudio.com/ and download the stable build for your operating system (Linux Ubuntu).

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (16)

Save the installation file:

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (17)

To install it, open a Terminal windows, navigate to your Downloads folder and run the following command to install VS Code.

$ cd Downloads~/Downloads $ sudo apt install ./code_1.49.1-1600299189_amd64.deb

When the installation is finished, VS Code should be available in your applications menu.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (18)

Open VS Code and you’ll be greeted by a Welcome tab with the released notes of the newest version.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (19)

That’s it. Visual Studio Code was successfully installed.

Installing Python on Linux Ubuntu

To program the ESP32 and ESP8266 boards with PlatformIO IDE you need Python 3.5 or higher installed in your computer. We’re using Python 3.8.

Open the Terminal window and check that you already have Python 3 installed.

$ python3 --versionpython 3.8.2
Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (20)

As you can see in the preceding figure, Python 3.8.2 is already installed.

If you don’t have Python 3.8.X installed, run the next command to install it:

$ sudo apt install python3

Whether you already have Python installed or not, you need to run the following command to install Python utilities.

$ sudo apt install python3-distutils
Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (21)

Now, go to this section to install PlatformIO IDE extension.

Installing PlatformIO IDE Extension on VS Code

It is possible to program the ESP32 and ESP8266 boards using VS Code with the PlatformIO IDE extension. Follow the next steps to install the PlatformIO IDE extension.

Open VS Code:

  1. Click on the Extensions icon or press Ctrl+Shift+X to open the Extensions tab
  2. Search for “PlatformIO IDE
  3. Select the first option
  4. Finally, click the Install button (Note: the installation may take a few minutes)
Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (22)

After installing, make sure that PlatformIO IDE extension is enabled as shown below.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (23)

After that, the PlatformIO icon should show up on the left sidebar as well as an Home icon that redirects you to PlatformIO home.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (24)

That’s it, PlatformIO IDE extension was successfully added to VS Code.

If you don’t see the PIO icon and the quick tools at the bottom, you may need to restart VS code for the changes to take effect.

Either way, we recommend restarting VS Code before proceeding.

VS Code Quick Interface Overview

Open VS Code. The following print screen shows the meaning of each icon on the left sidebar and its shortcuts:

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (25)
  • File explorer
  • Search across files
  • Source code management (using gist)
  • Launch and debug your code
  • Manage extensions

Additionally, you can press Ctrl+Shift+P or go to View > Command Palette… to show all the available commands. If you’re searching for a command and you don’t know where it is or its shortcut, you just need to go to the Command Palette and search for it.

At the bottom, there’s a blue bar with PlatformIO commands.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (26)

Here’s the what icon does from left to right:

  • PlatformIO Home
  • Build/Compile
  • Upload
  • Clean
  • Serial Monitor
  • New Terminal

If you hover your mouse over the icons, it will show what each icon does.

Alternatively, you can also click on the PIO icon to see all the PlatformIO tasks.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (27)

If the tasks don’t show up on your IDE when you click the icon, you may need to click on the three dot icon at the top and enable PlatformIO tasks as shown below.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (28)

PlatformIO IDE Overview

For you to get an overview on how PlatformIO works on VS code, we’ll show you how to create, save and upload a “Blinking LED” sketch to your ESP32 or ESP8266 board.

Create a New Project

On VS Code, click on the PlartfomIO Home icon. Click on + New Project to start a new project.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (29)

Give your project a name (for example Blink_LED) and select the board you’re using. In our case, we’re using the DOIT ESP32 DEVKIT V1. The Framework should be “Arduino” to use the Arduino core.

You can choose the default location to save your project or a custom location.

The default location is in this path Documents >PlatformIO >Projects. For this test, you can use the default location. Finally, click “Finish”.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (30)

For this example, we’ll be using the DOIT ESP32 DEVKIT board. If you are using an ESP8266 NodeMCU board the process is very similar, you just need to select your ESP8266 board:

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (31)

The Blink_LED project should be accessible from the Explorer tab.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (32)

VS Code and PlatformIO have a folder structure that is different from the standard .ino project. If you click on the Explorer tab, you’ll see all the files it created under your project folder. It may seem a lot of files to work with. But, don’t worry, usually you’ll just need to deal with one or two of those files.

Warning: you shouldn’t delete, modify or move the folders and the platformio.ini file. Otherwise, you will no longer be able to compile your project using PlatformIO.

platformio.ini file

The platformio.ini file is the PlatformIO Configuration File for your project. It shows the platform, board, and framework for your project. You can also add other configurations like libraries to be included, upload options, changing the Serial Monitor baud rate and other configurations.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (33)
  • platform: which corresponds to the SoC used by the board.
  • board: the development board you’re using.
  • framework: the software environment that will run the project code.

With the ESP32 and ESP8266, if you want to use a baud rate of 115200 in your Serial Monitor, you just need to add the following line to your platformio.ini file.

monitor_speed = 115200

After that, make sure you save the changes made to the file by pressing Ctrl+S.

In this file, you can also include the identifier of libraries you’ll use in your project using the lib_deps directive, as we’ll see later.

src folder

The src folder is your working folder. Under the src folder, there’s a main.cpp file. That’s where you write your code. Click on that file. The structure of an Arduino program should open with the setup() and loop() functions.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (34)

In PlatformIO, all your Arduino sketches should start with the #include <Arduino.h>.

Uploading Code using PlatformIO IDE: ESP32/ESP8266

Copy the following code to your main.cpp file.

/********* Rui Santos Complete project details at https://RandomNerdTutorials.com/vs-code-platformio-ide-esp32-esp8266-arduino/*********/#include <Arduino.h>#define LED 2void setup() { // put your setup code here, to run once: Serial.begin(115200); pinMode(LED, OUTPUT);}void loop() { // put your main code here, to run repeatedly: digitalWrite(LED, HIGH); Serial.println("LED is on"); delay(1000); digitalWrite(LED, LOW); Serial.println("LED is off"); delay(1000);}

View raw code

This code blinks the on-board LED every second. It works with the ESP32 and ESP8266 boards (both have the on-board LED connected to GPIO 2).

We recommend that you copy this code manually, so that you see the autocompletion and other interesting features of the IDE in action. Additionally, if you have a syntax error somewhere in your program, it will underline it in red even before compiling.

After that, press Ctrl+S or go to File > Save to save the file.

Now, you can click on the Upload icon to compile and upload the code. Alternatively, you can go to the PIO Project Tasks menu and select Upload.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (35)

If the code is successfully uploaded, you should get the following message.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (36)

After uploading the code, the ESP32 or ESP8266 should be blinking its on-board LED every second.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (37)

Now, click on the Serial Monitor icon and you should see it printing the current LED state.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (38)

Note: if you don’t see the Terminal window, go to the menu Terminal > New Terminal.

Detect COM Port

PlatformIO will automatically detect the port your board is connected to. To check the connected devices you can go to the PIO Home and click the Devices icon.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (39)

Troubleshooting

1)If you try to upload a new sketch to your ESP32 and you get this error message “A fatal error occurred: Failed to connect to ESP32: Timed out… Connecting…“. It means that your ESP32 is not in flashing/uploading mode.

Having the right board name and COM por selected, follow these steps:

  • Hold-down the BOOT button in your ESP32 board
  • Press the Upload button in the Arduino IDE to upload your sketch
  • After you see the“Connecting….” message in your Arduino IDE, release the finger from the BOOTbutton
  • After that, you should see the “Done uploading” message

You’ll also have to repeat that button sequence every time you want to upload a new sketch. But if you want to solve this issue once for all without the need to press the BOOT button, follow the suggestions in the next guide:

  • [SOLVED] Failed to connect to ESP32: Timed out waiting for packet header

2) If you get the error “COM Port not found/not available”, you might need to install the CP210x Drivers:

  • Install USB Drivers – CP210x USB to UART Bridge (Windows PC)
  • Install USB Drivers – CP210x USB to UART Bridge (Mac OS X)

If you experience any problems or issues with your ESP32, take a look at our in-depth ESP32 Troubleshooting Guide.

Changing the Serial Monitor Baud Rate – PlatformIO IDE

The default baud rate used by PlatformIO is 9600. However, it is possible to set up a different value as mentioned previously. On the File Explorer, under your project folder, open the platformio.ini file and add the following line:

monitor_speed = baud_rate

For example:

monitor_speed = 115200
Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (40)

After that, save that file.

Installing ESP32/ESP8266 Libraries on PlatformIO IDE

Follow the next procedure if you need to install libraries in PlatformIO IDE.

Click the Home icon to go to PlatformIO Home. Click on the Libraries icon on the left side bar.

Search for the library you want to install. For example Adafruit_BME280.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (41)

Click on the library you want to include in your project. Then, click Add to Project.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (42)

Select the project were you want to use the library.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (43)

This will add the library identifier using the lib_deps directive on the platformio.ini file. If you open your project’s platformio.ini file, it should look as shown in the following image.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (44)

Alternatively, on the library window, if you select the Installation tab and scroll a bit, you’ll see the identifier for the library. You can choose any of those identifiers depending on the options you want to use. The library identifiers are highlighted in red.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (45)

Then, go to the platformio.ini file of your project and paste the library identifier into that file, like this:

lib_deps = adafruit/Adafruit BME280 Library@^2.1.0

If you need multiple libraries, you can separate their name by a coma or put them on different lines. For example:

lib_deps = arduino-libraries/Arduino_JSON @ 0.1.0 adafruit/Adafruit BME280 Library @ ^2.1.0 adafruit/Adafruit Unified Sensor @ ^1.1.4

PlatformIO has a built-in powerful Library Manager, that allows you to specify custom dependencies per project in the Project Configuration File platformio.ini using lib_deps. This will tell PlatformIO to automatically download the library and all its dependencies when you save the configuration file or when you compile your project.

Open a Project Folder

To open an existing project folder on PlatformIO, open VS Code, go to PlatformIO Home and click on Open Project. Navigate through the files and select your project folder.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (46)

PlatformIO will open all the files within the project folder.

VS Code Color Themes

VS Code lets you choose between different color themes. Go to the Manage icon and select Color Theme. You can then select from several different light and dark themes.

Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (47)

Shortcuts’ List

For a complete list of VS Code shortcuts for Windows, Mac OS X or Linux, check the next link:

Wrapping Up

In this tutorial you’ve learned how to install and prepare Visual Studio Code to work with the ESP32 and ESP8266 boards. VS Code with the PlatformIO IDE extension is a great alternative to the classical Arduino IDE, especially when you’re working on more advanced sketches for larger applications.

Here’s some of the advantages of using VS Code with PlatformIO IDE over Arduino IDE:

  • It detects the COM port your board is connected to automatically;
  • VS Code IntelliSense: Auto-Complete. IntelliSense code completion tries to guess what you want to write, displaying the different possibilities and provides insight into the parameters that a function may expect;
  • Error Highlights: VS Code + PIO underlines errors in your code before compiling;
  • Multiple open tabs: you can have several code tabs open at once;
  • You can hide certain parts of the code;
  • Advanced code navigation;
  • And much more…

If you’re looking for a more advanced IDE to write your applications for the ESP32 and ESP8266 boards, VS Code with the PlatformIO IDE extension is a great option.

We hope you’ve found this tutorial useful. If you like ESP32 and ESP8266, check the following resources:

  • Learn ESP32 with Arduino IDE (eBook + course)
  • Home Automation using ESP8266 (eBook)
  • More ESP32 Projects and Tutorials…
  • More ESP8266 Projects and Tutorials…
Getting Started with VS Code and PlatformIO IDE for ESP32 and ESP8266 | Random Nerd Tutorials (2024)
Top Articles
Txdot Average Unit Prices
Sap Portal Txst
Krua Thai In Ravenna
Best Boxing Gyms Near Me
Hsqa Online Renewal System
Car Parts Open Now
Tc-656 Utah
Academic Calendar Biola
Editado Como Google Translate
Palos Health My Chart
Uhsbhlearn.com
Pepsi Collaboration
Deshaun Watson suspension ruling live updates: Latest on settlement with NFL, reactions
Her Triplet Alphas Chapter 32
Ihop Logopedia
The 15 Best Things to Do in Branson, Missouri
Sauce 423405
Eztv Ig
BugBitten Jiggers: a painful infestation
So sehen die 130 neuen Doppelstockzüge fürs Land aus
Famous Sl Couples Birthday Celebration Leaks
Craigs List Jonesboro Ar
Clay County Tax Collector Auto Middleburg Photos
Craigslist For Cars Los Angeles
CHERIE FM en direct et gratuit | Radio en ligne
Weather | Livingston Daily Voice
Spanish Letter Closings: formal, friendly, and informal - Wanderlust Spanish
Kentuky Fried Chicken Near Me
What Does FYP Mean on TikTok?
Stuckey Furniture
Ogłoszenia - Sprzedam, kupię na OLX.pl
Subway And Gas Station Near Me
Tsymo Pet Feeder Manual Pdf
Unblocked Games 66E
Nationsotc.com/Bcbsri
10 Best Laptops for FL Studio in 2023 | Technize
Lesley Ann Downey Transcript
Actionman23
What Auto Parts Stores Are Open
Vance Outdoors | Online Shopping for Firearms, Ammunition and Shooting Accessories
Bbc Weather In Mallorca
Jerry Trainor Shirtless
Shiny Flowers Belinda
Southern Ute Drum
Tu Pulga Online Utah
Stafford Rotoworld
Left Periprosthetic Femur Fracture Icd 10
Trapshooters.com Discussion Forum
Siôn Parry: The Welshman in the red of Canada
Vci Classified Paducah
Highplainsobserverperryton
Munich Bavaria Germany 15 Day Weather Forecast
Latest Posts
Article information

Author: Fredrick Kertzmann

Last Updated:

Views: 6580

Rating: 4.6 / 5 (66 voted)

Reviews: 89% of readers found this page helpful

Author information

Name: Fredrick Kertzmann

Birthday: 2000-04-29

Address: Apt. 203 613 Huels Gateway, Ralphtown, LA 40204

Phone: +2135150832870

Job: Regional Design Producer

Hobby: Nordic skating, Lacemaking, Mountain biking, Rowing, Gardening, Water sports, role-playing games

Introduction: My name is Fredrick Kertzmann, I am a gleaming, encouraging, inexpensive, thankful, tender, quaint, precious person who loves writing and wants to share my knowledge and understanding with you.