sketches

🤖 Sketches #1 Arduino command-line toolkit

MIT License

Stars
1

Sketches

Sketches is a command-line tool inspired by package manager like NPM. If you are fascinated by the package.json then you will love Sketches.yml.

Get Started

Install the Sketches via NPM

$ npm install -g sketches

or

$ sudo npm install -g sketches --unsafe-perm=true --allow-root

Create project from scratch

Create your first project

$ sketches init ArduinoProject
$ cd ArduinoProject

Configure your project

Each Sketches project can be configured via the 'Sketches.yml' file

name: <MyArduinoProject>
version: 0.0.1
sketches:
  MyArduinoProject:
    board: uno
    port: COM3

Verify operation

Verify source code of current project

$ Sketches verify

Upload operation

Upload binary into arduino board

$ Sketches upload

Roadmap

Command Progress Features
apply-filters 10%
create-sketch 10%
flash 10%
init 10%
install 10%
ls 10%
monitor 10%
rename-sketch 10%
sandbox 10%
upload 10%
verify 10%

See more

References