1
Your user account probably doesn't have permission to use the serial port.
Two ways to address this:
Two ways to address this:
- Easiest, but not advised: Run the Arduino IDE as root (eg launch from the command line using
sudo
). - The second, more advisable way to do it is to add your user to the
dialout
group, which has permission to use the serial port. Use the commandsudo adduser $USER dialout
. You will need to log out then log back in for it to take effect though (or try this). To list groups of current user usegroups
orid -Gn
.
/dev/ttyUSB0
) you should be able to write, allowing you to program the Arduino.
No comments:
Post a Comment