Skip to content

arduino

arduino IDE permissions (linux)

If the Arduino IDE is unable to connect to the device, this might help:

allow writing to the USB device:

sudo chmod ugo+w /dev/ttyUSB0

set the right groups:

sudo usermod -a -G tty $(whoami)
sudo usermod -a -G dialout $(whoami)