]> sigrok.org Git - libsigrokdecode.git/commitdiff
ir_nec: Add button texts for an unknown LED panel remote
authorSebastian Rittau <redacted>
Sat, 25 Jul 2020 17:18:59 +0000 (19:18 +0200)
committerGerhard Sittig <redacted>
Sat, 25 Jul 2020 21:46:10 +0000 (23:46 +0200)
The remote is unmarked and belongs to a 60x60cm LED panel. There is
a total of 8 buttons. It's probably some generic remote control.

Bought here: https://www.lumizil.de/led-deckenleuchte-panel-60x60cm

decoders/ir_nec/lists.py

index 7d47a46dca65b2d7bc9bbbbe19575c0a1af192d0..1754cd13c295f04986141d622c45fb405d600c5e 100644 (file)
@@ -20,6 +20,7 @@
 # Addresses/devices. Items that are not listed are reserved/unknown.
 address = {
     0x40: 'Matsui TV',
+    0xEA41: 'Unknown LED Panel',
 }
 
 digits = {
@@ -47,4 +48,22 @@ command = {
         31: ['Program down', 'P-'],
         68: ['AV', 'AV'],
     }.items())),
+
+    # This is most likely a generic remote control. The PCB
+    # has space for 16 buttons total, of which not all are
+    # connected. The PCB is marked "JSY", "XSK-5462", and
+    # "2014-6-12 JW". It consists of only a single IC, marked
+    # "BJEC107BNE" or similar. The following buttons are
+    # marked for the remote control of a LED panel this was
+    # found in.
+    0xEA41: {
+        0x10: ['Warmer', 'T+'],
+        0x11: ['Colder', 'T-'],
+        0x12: ['Brighter', '+'],
+        0x13: ['Darker', '-'],
+        0x14: ['Off', 'O'],
+        0x15: ['On', 'I'],
+        0x41: ['Min Brightness', 'Min'],
+        0x48: ['Max Brightness', 'Max'],
+    },
 }