I have an Arduino Uno and want to use it from my Ubuntu 12.04. I tried with the IDE both from Ubuntu's repository and the package from this website, but I cannot the IDE cannot find the serial port /dev/ttyACM0 even it is present on my Linux. The output of command
ls -lah /dev/ttyACM*
gives results like
crw-rw-rw- 1 root dialout 166, 0 Feb 18 20:13 /dev/ttyACM0
And my current username is already in the "dialout" group.
This is what I have tried:
- Open the Arduino IDE with sudo, but it cannot find /dev/ttyACM0
- Add a udev rule as in http://www.j-robotics.com/udev-rules-for-arduino-uno/, still no success
- Symbolically link /dev/ttyACM0 to /dev/ttyUSB0, like in udev – The lost outpost and http://arduino.cc/en/guide/troubleshooting#toc1 , still no success.
So I am just wondering why it still doesn't work. Is there anything I am missing? Thanks!