vodafone-controller
Version:
control your Vodafone box with nodejs
57 lines (55 loc) • 1.06 kB
JavaScript
var channels =
{
"4ee5043f-a57a-46b7-9b01-e0214de9e931" : "RTP 1",
"66517001-2233-41da-9949-92c57f723647" : "RTP 2",
"58c80b52-bb14-4868-83e3-e7bc3b56f47b" : "SIC",
"99188d1d-a4e4-4c3b-8cf7-0a7a502e774a" : "TVI",
"046caca8-f49e-4054-a205-c263334544c5" : "SIC Noticias"
}
var keys = {
"back":8,
"ok":13,
"p+":33,
"p-":34,
"menu":36,
"up":38,
"down":40,
"left":37,
"right":39,
"0":48,
"1":49,
"2":50,
"3":51,
"4":52,
"5":53,
"6":54,
"7":55,
"8":56,
"9":57,
"options":111,
"guia tv":112,
"videoclube":114,
"gravacoes":115,
"teletext":116,
"prev":117,
"rewind":118,
"play/pause":119,
"forward":121,
"next":122,
"stop":123,
"red":140,
"green":141,
"yellow":142,
"blue":143,
"switchscreen":156,
"i":159,
"mute":173,
"v-":174,
"v+":175,
"record":225,
"power":233
};
module.exports = {
channels: channels,
keys: keys
}