├── .gitignore ├── README.md ├── installArduinoIDE.sh └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | *.xz 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # installArduinoIDE 2 | Install the Arduino IDE on the NVIDIA Jetson Developer Kit. 3 | 4 | Consider donating to Arduino development at: https://www.arduino.cc/ 5 | 6 | This script downloads a version which supports the Jetson and installs it. To run the script: 7 | 8 | `$ ./installArduinoIDE.sh` 9 | 10 |

Notes

11 | 12 | ### September, 2021 13 | * L4T 32.6.1 / JetPack 4.6 14 | * Installs Arduino IDE 1.8.15 15 | * Tested on Jetson Nano 16 | * Thank you Dale @hybotics ! 17 | 18 | 19 | ### Initial Release October, 2019 20 | * L4T 32.2.1 / JetPack 4.2.2 21 | * Installs Arduino IDE 1.8.10 22 | * Tested on Jetson Nano 23 | -------------------------------------------------------------------------------- /installArduinoIDE.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Copyright (c) 2016-19 Jetsonhacks 3 | # MIT License 4 | # Download and install the Arduino IDE 5 | # This is a *very* simple script, change the environment 6 | # variables to your liking 7 | 8 | INSTALL_DIR=${HOME} 9 | # Direct Jetson support starts at 1.8.15 10 | ARDUINO_VERSION=1.8.15 11 | 12 | # Only download if newer version exists 13 | wget -N https://downloads.arduino.cc/arduino-$ARDUINO_VERSION-linuxaarch64.tar.xz 14 | tar -C $INSTALL_DIR/ -xvf arduino-${ARDUINO_VERSION}-linuxaarch64.tar.xz 15 | cd $INSTALL_DIR/arduino-${ARDUINO_VERSION} 16 | sudo ./install.sh 17 | ./arduino-linux-setup.sh "$USER" 18 | echo "You can delete the tar file if desired: arduino-"${ARDUINO_VERSION}"-linuxaarch64.tar.xz" 19 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 JetsonHacksNano 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | --------------------------------------------------------------------------------