Created
January 21, 2013 03:19
-
-
Save akey7/4583388 to your computer and use it in GitHub Desktop.
A client for the CW keyer hardware.
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 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