summaryrefslogtreecommitdiff
path: root/decoders
diff options
context:
space:
mode:
authorBenediktO <benedikt_o@web.de>2020-07-27 08:30:24 +0200
committerGerhard Sittig <gerhard.sittig@gmx.net>2020-08-30 10:23:35 +0200
commitf759507a3ab0f774716fdaedc8a1580017309f47 (patch)
tree59f6279dca1ae8b0ce9af9e9a1ea74ba85a5c199 /decoders
parentbcbdb1d9aa98dc9af0249bf4b42a60a7bb1eed01 (diff)
downloadlibsigrokdecode-f759507a3ab0f774716fdaedc8a1580017309f47.tar.gz
libsigrokdecode-f759507a3ab0f774716fdaedc8a1580017309f47.zip
ir_nec: Add Joy-it SBC-IRC01 remote
The Joy-it SBC-IRC01 remote control appears as address 0x00.
Diffstat (limited to 'decoders')
-rw-r--r--decoders/ir_nec/lists.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/decoders/ir_nec/lists.py b/decoders/ir_nec/lists.py
index 1754cd1..dbb9288 100644
--- a/decoders/ir_nec/lists.py
+++ b/decoders/ir_nec/lists.py
@@ -19,6 +19,7 @@
# Addresses/devices. Items that are not listed are reserved/unknown.
address = {
+ 0x00: 'Joy-it SBC-IRC01',
0x40: 'Matsui TV',
0xEA41: 'Unknown LED Panel',
}
@@ -66,4 +67,27 @@ command = {
0x41: ['Min Brightness', 'Min'],
0x48: ['Max Brightness', 'Max'],
},
+ 0x00: {
+ 0x45: ['Volume down', 'Vol-'],
+ 0x46: ['Play/Pause', 'P/P'],
+ 0x47: ['Volume up', 'Vol+'],
+ 0x44: ['Setup', 'Set'],
+ 0x40: ['Up', 'U'],
+ 0x43: ['Stop / Mode', 'S/M'],
+ 0x07: ['Left', 'L'],
+ 0x15: ['Enter', 'E'],
+ 0x09: ['Right', 'R'],
+ 0x16: ['0 / 10+', '0'],
+ 0x19: ['Down', 'D'],
+ 0x0D: ['Back', 'B'],
+ 0x0C: ['1', '1'],
+ 0x18: ['2', '2'],
+ 0x5E: ['3', '3'],
+ 0x08: ['4', '4'],
+ 0x1C: ['5', '5'],
+ 0x5A: ['6', '6'],
+ 0x42: ['7', '7'],
+ 0x52: ['8', '8'],
+ 0x4A: ['9', '9'],
+ }
}