Install PlatformIO on Visual Studio Code to program ESP32-C6 in ESP-IDF.
It's a fresh new Linux Mint with Visual Studio Code installed , no esptool or ESP-IDF installed. This video show steps to install PlatformIO on Visual Studio Code, to program YD-ESP32-C6-N16 . It's quite straightforward, except that: If following error reported while installing: PlatformIO: can not find working Python 3.6+ Interpreter. Click on Abort PlatformIO IDE Installation, and check available solutions: https://github.com/platformio/platformio-core-installer/issues/1774 Solution for Linux, install the following package and restart IDE. sudo apt-get install python3-venv If fail in accessing USB port: A fatal error occurred: Could not open /dev/ttyUSB0, the port doesn't exist. Grant permission to user, enter the command in Terminal, log out and log in: sudo usermod -a -G dialout <user> Code: Edit platformio.ini to add the last three line about monitor_ setting: [env:esp32-c6-devkitc-1] platform = espressif32 board = esp32-c6-devkitc-1 framewo...