Skip to content

Instantly share code, notes, and snippets.

@rwaldron
Forked from voodootikigod/serial.js
Created March 19, 2011 17:30
Show Gist options
  • Save rwaldron/877643 to your computer and use it in GitHub Desktop.
Save rwaldron/877643 to your computer and use it in GitHub Desktop.
var SerialPort = require("./serialport")
var sp = new SerialPort("/dev/ttyUSB0")
sp.write("OMG USB");
// Reading is not perfect yet
sp.on('data', function(data) {
sys.puts("data");
});
sp.close();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment