VS Code & XIAO ESP32-S3

Has anyone successfully uploaded code to the XIAO ESP32-S3 using the Visual Studio & PlatformIO IDE’s??
If so, could you kindly provide instructions on how it is done? I tried to start a new BLINK project, but received an error when I tried to use the XIAO ESP32-S3 as the project board.

Thanks,
Joel

Modify the platform property in the platformio.ini to target 6.2.0: platform = espressif32 @ 6.2.0

1 Like

This works! My PlatformIO is:

[env:seeed_xiao_esp32s3]
platform = espressif32
board = seeed_xiao_esp32s3
framework = arduino
monitor_speed =115200

Thanks for the help!