
arduino
List of commands for arduino:
-
arduino:tldr:02a7a arduino: Save any (changed) preferences to `preferences.txt`.$ arduino --save-prefstry on your machineexplain this command
-
arduino:tldr:0af8f arduino: Build a sketch, put the build results in the build directory, and reuse any previous build results in that directory.$ arduino --pref build.path=${path-to-build_directory} --verify ${filename-ino}try on your machineexplain this command
-
arduino:tldr:161b0 arduino: Install the latest SAM board.$ arduino --install-boards "${arduino:sam}"try on your machineexplain this command
-
arduino:tldr:3301a arduino: Build a sketch.$ arduino --verify ${filename-ino}try on your machineexplain this command
-
arduino:tldr:3b819 arduino: Install Bridge and Servo libraries.$ arduino --install-library "${Bridge:1-0-0,Servo:1-2-0}"try on your machineexplain this command
-
arduino:tldr:70c33 arduino: Build and upload a sketch.$ arduino --upload ${filename-ino}try on your machineexplain this command
-
arduino:tldr:78c07 arduino: Build and upload a sketch to an Arduino Nano with an Atmega328p CPU, connected on port `/dev/ttyACM0`.$ arduino --board ${arduino:avr:nano:cpu=atmega328p} --port ${-dev-ttyACM0} --upload ${filename-ino}try on your machineexplain this command
-
arduino:tldr:8ee44 arduino: Set the preference `name` to a given `value`.$ arduino --pref ${name}=${value}try on your machineexplain this command