8ccf93ce40 | ||
---|---|---|
dist | ||
examples | ||
src | ||
test | ||
.gitignore | ||
.jshintrc | ||
.travis.yml | ||
CONTRIBUTORS.md | ||
Gruntfile.js | ||
LICENSE | ||
README.md | ||
package.json |
README.md
Cylon.js
Cylon.js (http://cylonjs.com) is a JavaScript framework for robotics and physical computing using Node.js.
It provides a simple, yet powerful way to create solutions that incorporate multiple, different hardware devices at the same time.
Want to use Ruby on robots? Check out our sister project Artoo (http://artoo.io).
Want to use the Go programming language to power your robots? Check out our sister project Gobot (http://gobot.io).
Getting Started
All you need to get started is the cylon
module:
npm install cylon
Then install modules for whatever hardware support you want to use from your robot. For the example below, an Arduino using the Firmata protocol:
npm install cylon-firmata
Examples
The example below connects to an Arduino, and every second turns the LED either on, or off.
The example requires that the Arduino has the Firmata sketch installed, and that it is connected on the port /dev/ttyACM0
. You need to install Firmata on your Arduino, and to change the port
parameter to match the port that your system is actually using.
Make sure to upload the "Standard Firmata" sketch or an equivalent Firmata sketch to your Arduino first. Without that code running on the Arduino, Firmata can't communicate with Cylon. You can find the example sketch in your Arduino software under "Examples > Firmata > StandardFirmata".
JavaScript:
var Cylon = require("cylon");
// Initialize the robot
var robot = Cylon.robot({
// Change the port to the correct port for your Arduino.
connection: { name: 'arduino', adaptor: 'firmata', port: '/dev/ttyACM0' },
device: { name: 'led', driver: 'led', pin: 13 },
work: function(my) {
// we do our thing here
every((1).second(), function() { my.led.toggle(); });
}
});
// start working
robot.start();
CoffeeScript:
Cylon = require "cylon"
# Initialize the robot
robot = Cylon.robot
connection:
name: 'arduino', adaptor: 'firmata', port: '/dev/ttyACM0'
device:
name: 'led', driver: 'led', pin: 13
work: (my) ->
# we do our thing here
every 1.second(), -> my.led.toggle()
robot.start()
Note: before running any examples in the examples/
dir from source, make sure to compile using grunt coffee
first.
Hardware Support
Cylon.js has a extensible system for connecting to hardware devices. The following robotics, physical computing, or software platforms are currently supported:
- Ardrone <==> Adaptor/Drivers
- Arduino <==> Adaptor
- Leap Motion <==> Adaptor/Driver
- Raspberry Pi <==> Adaptor
- Salesforce <==> Adaptor/Driver
- Sphero <==> Adaptor/Driver
Support for many devices that use General Purpose Input/Output (GPIO) have a shared set of drivers provded using the cylon-gpio module:
Support for devices that use Inter-Integrated Circuit (I2C) have a shared set of drivers provded using the cylon-i2c module:
More platforms and drivers are coming soon...
Documentation
We're busy adding documentation to our web site at http://cylonjs.com/ please check there as we continue to work on Cylon.js
Thank you!
Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
Release History
Version 0.6.0 - API exposes robot commands, fixes issues in driver/adaptor init
Version 0.5.0 - Improve API, add GPIO support for reuse in adaptors
Version 0.4.0 - Refactor proxy in Cylon.Basestar, improve API
Version 0.3.0 - Improved Cylon.Basestar, and added API
Version 0.2.0 - Cylon.Basestar to help develop external adaptors/drivers
Version 0.1.0 - Initial release for ongoing development
License
Copyright (c) 2013 The Hybrid Group. Licensed under the Apache 2.0 license.