shef
v0.0.2
Published
A node.js client for your DIRECTV boxes
Downloads
3
Readme
shef
A node.js client for your DIRECTV boxes.
Usage
Install...
$ npm install shef
Connect to one of your boxes and do some stuff...
var shef = require('../');
var box1 = shef.box('192.168.0.114');
box1.tune(234, function(err, res) {
if(!err) console.log('Tuned to channel 234');
});