-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Description
With the following code:
var hdhr = require('hdhomerun');
hdhr.discover(function (err, res) {
console.log(res);
var device = hdhr.create({device_id: res[0]['device_id'],
device_ip: res[0]['device_ip']});
device.get('/sys/model', function (err, res) {
console.log(res);
});
device.set('/tuner0/channel', 'auto:51', function (err, res) {
console.log(res);
console.log(err);
});
});
I get the following results:
[ { len: 15,
device_id: '103DA852',
device_type: 'tuner',
tuner_count: 2,
checksum: 120479540,
_offset: 23,
device_ip: '192.168.0.26' } ]
{ name: '/sys/model', value: 'hdhomerun3_atsc' }
undefined
[Error: request timeout]
I'm trying to track down whats wrong..... If you have any hints itd be helpful!
Thanks
Tyson
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels