This is an old revision of the document!
On VS Code, click on the PlartfomIO Home icon. Click on + New Project to start a new project.
Give your project a name, select the board WeMos D1 MINI ESP32 (WEMOS) and the framework as Arduino
After finishing the setup the project should be accessible from the explorer tab.
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.
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.
In PlatformIO, all your Arduino sketches should start with the
#include <Arduino.h>