Arduino CLI is a tool to access all Arduino Create API from Command Line. It implements all functions provided by web version of Arduino Create.
- You should have a recent Go compiler installed.
- Run
go get github.com/bcmi-labs/arduino-cli
go build -o arduino-cli
./arduino-cli ARGS
You may want to copy the binary into a directory which is in your PATH
environment variable
(such as /usr/local/bin/
) or add the binary's directory to it.
A general call is
arduino-cli COMMAND
To see the full list of commands, call one of the following:
arduino-cli help [COMMAND]
arduino-cli [COMMAND] -h
arduino-cli [COMMAND] --help
To contribute to this project:
git clone
this repository.- Create a new branch with the name
feature-to-implement
orbug-to-fix
. - Code your contribution and push to your branch.
- Do a Pull Request.