node-slot-car-bot
v0.0.1
Published
Automate your Slotcar Set with Javascript
Downloads
3
Readme
Node Slot Car Bot
Automate your Slotcar Set with Javascript
Usage
For detailed intructions see the write up on Will Robots Dream.
NPM install node-slot-car-bot
var SlotCarSet = require("node-slot-car-bot");
var MySet = new SlotCarSet();
MySet.on("ready", function(){
var mySet = this;
var car = mySet.addCar({pin:6});
car.setSpeed({rate:300});
car.start();
});
Examples
See the examples folder.