Spread the love
Nvidia Nano Architecture
https://elinux.org/Jetson_Nano
Download the Arduino IDE here.
Download Linux ARM 64 bits.
https://www.arduino.cc/en/Main/Software
Install Software
Set your port and change user permission settings to use USB port.
Error message: avrdude: ser_open(): can’t open device “/dev/ttyUSB0”: Permission denied
Enter the following into terminal to get permissions. (Change ‘marty’ to your user name.)
These permission reset every time you shutdown the Nano. They will need to be set every startup.
ls -l /dev/ttyUSB0
sudo usermod -a -G marty
sudo chmod a+rw /dev/ttyUSB0
For a permanent permission solution, enter the following command and reboot your Nano.
sudo adduser marty dialout
sudo reboot
