]> sigrok.org Git - libsigrokdecode.git/blob - decoders/ir_nec/lists.py
3f730d9c61c55c82f4a5397b798f2e0f0fec07d8
[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, write to the Free Software
18 ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19 ##
20
21 # Addresses/devices. Items that are not listed are reserved/unknown.
22 address = {
23     0x40: 'Matsui TV',
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 }