]> sigrok.org Git - libsigrokdecode.git/blob - decoders/ir_nec/lists.py
1754cd13c295f04986141d622c45fb405d600c5e
[libsigrokdecode.git] / decoders / ir_nec / lists.py
1 ##
2 ## This file is part of the libsigrokdecode project.
3 ##
4 ## Copyright (C) 2014 Uwe Hermann <uwe@hermann-uwe.de>
5 ##
6 ## This program is free software; you can redistribute it and/or modify
7 ## it under the terms of the GNU General Public License as published by
8 ## the Free Software Foundation; either version 2 of the License, or
9 ## (at your option) any later version.
10 ##
11 ## This program is distributed in the hope that it will be useful,
12 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 ## GNU General Public License for more details.
15 ##
16 ## You should have received a copy of the GNU General Public License
17 ## along with this program; if not, see <http://www.gnu.org/licenses/>.
18 ##
19
20 # Addresses/devices. Items that are not listed are reserved/unknown.
21 address = {
22     0x40: 'Matsui TV',
23     0xEA41: 'Unknown LED Panel',
24 }
25
26 digits = {
27     0: ['0', '0'],
28     1: ['1', '1'],
29     2: ['2', '2'],
30     3: ['3', '3'],
31     4: ['4', '4'],
32     5: ['5', '5'],
33     6: ['6', '6'],
34     7: ['7', '7'],
35     8: ['8', '8'],
36     9: ['9', '9'],
37 }
38
39 # Commands. Items that are not listed are reserved/unknown.
40 command = {
41     0x40: dict(list(digits.items()) + list({
42         11: ['-/--', '-/--'],
43         16: ['Mute', 'M'],
44         18: ['Standby', 'StBy'],
45         26: ['Volume up', 'Vol+'],
46         27: ['Program up', 'P+'],
47         30: ['Volume down', 'Vol-'],
48         31: ['Program down', 'P-'],
49         68: ['AV', 'AV'],
50     }.items())),
51
52     # This is most likely a generic remote control. The PCB
53     # has space for 16 buttons total, of which not all are
54     # connected. The PCB is marked "JSY", "XSK-5462", and
55     # "2014-6-12 JW". It consists of only a single IC, marked
56     # "BJEC107BNE" or similar. The following buttons are
57     # marked for the remote control of a LED panel this was
58     # found in.
59     0xEA41: {
60         0x10: ['Warmer', 'T+'],
61         0x11: ['Colder', 'T-'],
62         0x12: ['Brighter', '+'],
63         0x13: ['Darker', '-'],
64         0x14: ['Off', 'O'],
65         0x15: ['On', 'I'],
66         0x41: ['Min Brightness', 'Min'],
67         0x48: ['Max Brightness', 'Max'],
68     },
69 }