-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsky-remote.js
115 lines (103 loc) · 2 KB
/
sky-remote.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
var net = require('net');
function SkyRemote(host, port) {
var that = this;
this.connectTimeout = 1000;
function sendCommand(code, cb) {
var commandBytes = [4,1,0,0,0,0, Math.floor(224 + (code/16)), code % 16];
var client = net.connect({
host: host,
port: port || 49160
});
var l = 12;
client.on('data', function(data) {
clearTimeout(connectTimeoutTimer)
// Clear timeout
if (data.length < 24) {
client.write(data.slice(0, l))
l = 1;
} else {
client.write(new Buffer(commandBytes), function() {
commandBytes[1]=0;
client.write(new Buffer(commandBytes), function() {
client.destroy();
cb(null)
});
});
}
});
client.on('error', function(err) {
clearTimeout(connectTimeoutTimer)
cb(err)
})
var connectTimeoutTimer = setTimeout(function() {
client.end()
var err = new Error('connect timeout '+host+':'+port)
err.name = 'ECONNTIMEOUT'
err.address = host
err.port = port
cb(err)
}, that.connectTimeout)
}
this.press = function press(sequence, cb) {
if (typeof sequence !== 'object' || !sequence.hasOwnProperty('length')) {
return press(sequence.split(','), cb)
};
sendCommand(SkyRemote.commands[sequence.shift()],function(err) {
if (sequence.length) {
setTimeout(function() {
press(sequence, cb);
},500);
} else {
if (typeof cb === 'function') {
cb(err);
}
}
});
}
}
SkyRemote.SKY_Q_LEGACY = 5900;
SkyRemote.SKY_Q = 49160; // Keeping for backwards compatability
SkyRemote.commands = {
power: 0,
select: 1,
backup: 2,
dismiss: 2,
channelup: 6,
channeldown: 7,
interactive: 8,
sidebar: 8,
help: 9,
services: 10,
search: 10,
tvguide: 11,
home: 11,
i: 14,
text: 15,
up: 16,
down: 17,
left: 18,
right: 19,
red: 32,
green: 33,
yellow: 34,
blue: 35,
0: 48,
1: 49,
2: 50,
3: 51,
4: 52,
5: 53,
6: 54,
7: 55,
8: 56,
9: 57,
play: 64,
pause: 65,
stop: 66,
record: 67,
fastforward: 69,
rewind: 71,
boxoffice: 240,
sky: 241
}
module.exports = SkyRemote;