0.0.13 • Published 8 years ago
arduinodk v0.0.13
Arduinodk
Arduinodk is a command-line tool inspired by package manager like NPM and YARN.
If you are fascinated by the package.json then you will love sketches.yml.
Get Started
$ npm install -g arduinodkCreate project from scratch
$ mkdir MyArduinoProject
$ cd MyArduinoProject
$ arduinodk init- Read more: Advanced project management
Create project from existing repository
$ arduinodk clone <remote-git-repository>Configure your project
Every Arduinodk project are configured by 'sketch.yml' file
# Simple 'sketches.yml' file
name: "MyArduinoProject"
board: "package:arch:board[:parameters]"- Read more: Reference: sketch.yml
Build your project
Verify operation
Verify source code of current project
$ arduinodk verifyUpload operation
Upload binary into arduino board
$ arduinodk upload