Skip to content

Instantly share code, notes, and snippets.

@dcherman
Created August 11, 2012 23:28
Show Gist options
  • Save dcherman/3327797 to your computer and use it in GitHub Desktop.
Save dcherman/3327797 to your computer and use it in GitHub Desktop.
var firmata = require( "firmata" );
var board = new firmata.Board( "COM6", function() {
console.log( "Connected" );
console.log( arguments );
});
board.sp.on('data', function(data) {
console.log( data );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment