PlatformIO in VS Code running on Linux Debian - access to /dev/ttyUSB0 - port doesn't exist

On linux your user needs to be in the dialout group. Simply changing /dev/ttyUSB0 perms wont work. To add your current user into the dialout group run

sudo usermod -a -G dialout $USER

reboot & profit

2 Likes