]> sigrok.org Git - libsigrokdecode.git/blame - decoders/ir_nec/lists.py
sle44xx: support memory read "to end of capacity"
[libsigrokdecode.git] / decoders / ir_nec / lists.py
CommitLineData
12fecc8f
UH
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
4539e9ca 17## along with this program; if not, see <http://www.gnu.org/licenses/>.
12fecc8f
UH
18##
19
20# Addresses/devices. Items that are not listed are reserved/unknown.
21address = {
22 0x40: 'Matsui TV',
5881582c 23 0xEA41: 'Unknown LED Panel',
12fecc8f
UH
24}
25
26digits = {
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.
40command = {
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())),
5881582c
SR
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 },
12fecc8f 69}