Skip to content

Instantly share code, notes, and snippets.

@akey7
Created January 21, 2013 03:19
Show Gist options
  • Save akey7/4583388 to your computer and use it in GitHub Desktop.
Save akey7/4583388 to your computer and use it in GitHub Desktop.
A client for the CW keyer hardware.
var net = require('net');
exports.send = function(message) {
var client = net.connect({host: '192.168.0.73', port: 73}, function() {
client.write(message);
client.end();
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment