Running BlinkyTape w/ Processing in Ubuntu (14.04.1)
Documenting the troubleshooting I went through to save other Linux newbies time:
First I had to figure out the device name on my particular system (ttyACM0) by using dmesg. After I entered that into my sketch, Processing complained that I didn't have permission to access the serial port. I got my sketch to work after I entered this:
sudo chown myUserName /dev/ttyACM0
This is the resource that I used:
http://askubuntu.com/questions/112568/how-do-i-allow-a-non-default-user-to-use-serial-device-ttyusb0
First I had to figure out the device name on my particular system (ttyACM0) by using dmesg. After I entered that into my sketch, Processing complained that I didn't have permission to access the serial port. I got my sketch to work after I entered this:
sudo chown myUserName /dev/ttyACM0
This is the resource that I used:
http://askubuntu.com/questions/112568/how-do-i-allow-a-non-default-user-to-use-serial-device-ttyusb0
Comments