Cylon.js (http://cylonjs.com) is a JavaScript framework for robotics and physical computing using Node.js
This repository contains the Cylon adaptor for the MiP robot from Wowwee (http://www.wowwee.com/mip/).
For more information about Cylon, check out the repo at https://github.com/hybridgroup/cylon
$ npm install cylon-mip
var Cylon = require('cylon');
Cylon.robot({
connections: { bluetooth: {adaptor: 'central', uuid: 'd03972a24e55', module: 'cylon-ble'}},
devices: {mip: {driver: 'mip'}},
work: function(my) {
my.mip.setHeadLED(2, 2, 2, 2);
after((2).seconds(), function() {
my.mip.driveDistance(0, 10, 0, 0);
});
after((3).seconds(), function() {
my.mip.setHeadLED(1, 1, 1, 1);
});
}
}).start();
You need to determine the uuid
of your MiP. One way to do this, is to use the cylon-ble-scan
command line utility installed as part of cylon-ble.
Once you know your uuid
just substititute it into your code.
We're busy adding documentation to cylonjs.com. Please check there as we continue to work on Cylon.js.
Thank you!
- All patches must be provided under the Apache 2.0 License
- Please use the -s option in git to "sign off" that the commit is your work and you are providing it under the Apache 2.0 License
- Submit a Github Pull Request to the appropriate branch and ideally discuss the changes with us in IRC.
- We will look at the patch, test it out, and give you feedback.
- Avoid doing minor whitespace changes, renamings, etc. along with merged content. These will be done by the maintainers from time to time but they can complicate merges and should be done seperately.
- Take care to maintain the existing coding style.
- Add unit tests for any new or changed functionality & lint and test your code using
make test
andmake lint
. - All pull requests should be "fast forward"
- If there are commits after yours use “git rebase -i <new_head_branch>”
- If you have local changes you may need to use “git stash”
- For git help see progit which is an awesome (and free) book on git
Version 0.2.0 - Compatability with Cylon 0.22.0
Version 0.1.0 - Initial release
Copyright (c) 2014 The Hybrid Group. Licensed under the Apache 2.0 license.