cylon-tessel
v0.14.0
Published
Cylon module for Tessel
Downloads
6
Readme
Cylon.js For Tessel
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 Tessel JavaScript microcontroller.
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).
For more information about Cylon, check out our repo at https://github.com/hybridgroup/cylon
How to Install
Follow the installation instructions detailed here
We've provided a repo containing an example cylon-tessel project.
$ git clone https://github.com/hybridgroup/cylon-example-tessel.git my-tessel-project
$ cd my-tessel-project
$ npm install
$ tessel run blink.js
If the blue light starts to blink, then you're all set!
How to Use
LED
This small program lets you toggle an LED on and off.
var Cylon = require('cylon');
Cylon.robot({
connections: {
tessel: { adaptor: 'tessel' }
},
devices: {
led: { driver: 'led', pin: 1 }
},
work: function(my) {
every((1).seconds(), function() { my.led.toggle() });
}
}).start();
Climate
This small program shows how to use the Tessel Climate module.
var Cylon = require('cylon');
Cylon.robot({
connections: {
tessel: { adaptor: 'tessel', port: 'A' }
},
devices: {
climate: { driver: 'climate-si7005' }
},
work: function(my) {
my.climate.on('error', function (err) {
console.log(err)
});
every((1).seconds(), function() {
my.climate.readHumidity(function (err, humid) {
console.log('Humidity:', humid.toFixed(4) + '%RH');
});
my.climate.readTemperature('f', function (err, temp) {
console.log('Degrees:', temp.toFixed(4) + 'F');
});
});
}
}).start();
How to Connect
As mentioned in the How To Install section, connecting to the Tessel is easy. You just need to follow the provided instructions on the Tessel site.
If you've already done this, your Tessel should already be connected and ready to run Cylon.JS code.
Tessel Module Support
The Tessel has a variety of custom hardware modules specifically for use with Tessel. Cylon.js has support for the following Tessel modules:
GPIO & I2C Support
In addition to the custom Tessel modules, you can also use the standard Cylon.js GPIO and I2C drivers:
- Analog Sensor
- Button
- IR Rangefinder
- LED
- MakeyButton
- Maxbotix Ultrasonic Range Finder
- BlinkM
- BMP180
- HMC6352 Digital Compass
- LCD
- MPL115A2 Barometer/Thermometer
- MPU6050
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
For our contribution guidelines, please go to https://github.com/hybridgroup/cylon/blob/master/CONTRIBUTING.md.
Release History
For the release history, please go to https://github.com/hybridgroup/cylon-tessel/blob/master/RELEASES.md.
License
Copyright (c) 2013-2015 The Hybrid Group. Licensed under the Apache 2.0 license.