-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAPI.js
146 lines (146 loc) · 1.79 KB
/
API.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
exports.api = [
{
title: 'Browser engine',
id: 0
},
{
title: 'storage',
id: 1
},
{
title: 'save to storage',
id: 2
},
{
title: 'get from storage',
id: 3
},
{
title: 'clear storage',
id: 4
},
{
title: 'remove item from storage',
id: 5
},
{
title: 'get DUID',
id: 6
},
{
title: 'get MAC',
id: 7
},
{
title: 'get IP',
id: 8
},
{
title: 'get SDI',
id: 9
},
{
title: 'get model code',
id: 10
},
{
title: 'get product code',
id: 11
},
{
title: 'get hardware version',
id: 12
},
{
title: 'Volume controls enable',
id: 13
},
{
title: 'Volume up/down',
id: 14
},
{
title: 'get Volume',
id: 15
},
{
title: 'toggleMute',
id: 16
},
{
title: 'exit function',
id: 17
},
{
title: 'return function',
id: 18
},
{
title: 'set aspect ration',
id: 19
},
{
title: 'mouse navigation',
id: 20
},
{
title: 'gesture navigation',
id: 21
},
{
title: 'voice recognition',
id: 22
},
{
title: 'screen saver function',
id: 23
},
{
title: 'get used memory',
id: 24
},
{
title: 'native keyboard',
id: 25
},
{
title: 'loading indicator',
id: 26
},
{
title: 'Player',
id: 27
},
{
title: 'support 3d',
id: 28
},
{
title: 'Player buffering controls',
id: 29
},
{
title: 'Player support subtitle',
id: 30
},
{
title: 'Player adjust playing speed',
id: 31
},
{
title: 'Player support playlists',
id: 32
},
{
title: 'Player media info',
id: 33
},
{
title: 'Player change sizes',
id: 34
},
{
title: 'Player support audio language',
id: 35
}
];