]> sigrok.org Git - libsigrokdecode.git/blob - decoders/ir_nec/lists.py
Add a CFP decoder.
[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 }
24
25 digits = {
26     0: ['0', '0'],
27     1: ['1', '1'],
28     2: ['2', '2'],
29     3: ['3', '3'],
30     4: ['4', '4'],
31     5: ['5', '5'],
32     6: ['6', '6'],
33     7: ['7', '7'],
34     8: ['8', '8'],
35     9: ['9', '9'],
36 }
37
38 # Commands. Items that are not listed are reserved/unknown.
39 command = {
40     0x40: dict(list(digits.items()) + list({
41         11: ['-/--', '-/--'],
42         16: ['Mute', 'M'],
43         18: ['Standby', 'StBy'],
44         26: ['Volume up', 'Vol+'],
45         27: ['Program up', 'P+'],
46         30: ['Volume down', 'Vol-'],
47         31: ['Program down', 'P-'],
48         68: ['AV', 'AV'],
49     }.items())),
50 }