- SparkFun - http://www.sparkfun.com/
- AdaFruit - http://www.adafruit.com/
- Little Bird Electronics - http://littlebirdelectronics.com/
- Cool Components - http://www.coolcomponents.co.uk/catalog/
- Robot Shop -http://www.robotshop.com/
- Alibaba - http://www.alibaba.com/ Google for ODM action.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Code below this line is for your node. | |
// Drive 3.3v LCD Screen using a Sparkfun SerLCD backpack from an Electric IMP | |
hardware.uart12.configure(9600, 8, PARITY_NONE, 1, NO_RX); | |
CharactersInLCD <- 16; | |
ConnectedState <- false; | |
LastLatency <- 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//FightCode can only understand your robot | |
//if its class is called Robot | |
var Robot = function(robot) { | |
}; | |
Robot.prototype.onIdle = function(ev) { | |
var robot = ev.robot; | |
robot.rotateCannon(10); |
- https://github.com/felixge/node-ar-drone
- https://github.com/bkw/nodecopter-stream
- https://github.com/nesQuick/nodecopter-hacks
- https://github.com/substack/matador-copter
- https://github.com/brianleroux/phonegap-android-speech-to-ardrone
- https://github.com/maxogden/nodecopter-hacks
- https://github.com/notmatt/gruntcopter
- https://github.com/voodootikigod/wii-drone
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var five = require("johnny-five"), | |
board, sensor; | |
board = new five.Board(); | |
board.on("ready", function() { | |
sensor = new five.Sensor({ pin: 0, freq: 250 }); | |
board.repl.inject({ | |
sensor: sensor | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<Product xmlns='http://code.google.com/p/open-zwave/'> | |
<!-- Configuration Parameters --> | |
<CommandClass id="112"> | |
<Value type="byte" index="0" genre="config" label="Unidentified Parameter" units="" min="0" max="255" value="5"> | |
<Help> | |
Parameter #0 is undocumented: let us know if you know what it does! | |
Attributes (type, units, min and max) are wild guesses, except default value. | |
</Help> | |
</Value> |
It has been brought to my attention that I did not clarify how to RSVP for the trips. To avoid further confusion, I have put together a sign up sheet online. Please check the boxes for each activity you plan on attending. If you have already emailed me I will still count you as attending but it would be great if you could still fill out the form, so I have your phone number and all the data in one central location.
Thank you very much and we are super excited for Scottsdale.
Laura Williams
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
// this file is stored in a directory of APP_ROOT/script for me, all things are relative to that | |
var APP_ROOT = __dirname+"/../"; | |
// this assumes there is a file stored in APP_ROOT called "config.js" with the following structure: | |
// | |
// module.exports = { | |
// "development: { | |
// "postgresql": "tcp://postgres@localhost/dev-db" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Simple example that takes a command line provided serial port destination and routes the output to a file of the same name with .log appended to the port name. | |
usage: node logger.js /dev/tty.usbserial <baudrate> | |
*/ | |
var SerialPort = require("serialport"); | |
var fs = require("fs"); | |
var port = process.argv[2]; |