Feature | Support |
Sending | |
Receiving | |
Config |
Supported Brands
Brand | Protocol |
Rising Sun RSL366 | rsl366 |
Brennenstuhl | brennenstuhl |
Sender Arguments
1 2 3 4 | -s --systemcode=systemcode control a device with this systemcode
-u --programcode=programcode control a device with this programcode
-t --on send an on signal
-f --off send an off signal
|
Config
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | {
"devices": {
"switch": {
"protocol": [ "promax" ],
"id": [{
"systemcode": 4,
"programcode": 1
}],
"state": "off"
}
},
"gui": {
"Lamp": {
"name": "TV Backlit",
"group": [ "Living" ],
"media": [ "all" ]
}
}
}
|
Option | Value |
systemcode | 0 - 4 |
unitcode | 0 - 4 |
state | on / off |
Optional Settings
GUI Settings
Setting | Default | Format | Description |
readonly | 1 | 1 or 0 | Disable controlling this device from the GUIs |
confirm | 1 | 1 or 0 | Ask for confirmation when switching device |
Note
RSL366
The RSL366 switches come with two dials, one selecting the Systemcode (1 to 4) and the Programcode (1 to 4). The systemcode allows one remote to control up to 16 switches. The systemcode parameter designates the dial on top of the back side of the switch, and the small lever on the back of the remote. The programcode parameter designates the lower dial on the back of the switch, and the individual buttons on the face of the remote. So if your switch has the higher dial set to 4, and the lower one set to 1, you should use:
systemcode: 4
programcode: 1
Protocol
This protocol sends 50 pulses like this
390 1170 1170 390 390 1170 1170 390 390 1170 1170 390 390 1170 390 1170 390 1170 390 1170 390 1170 1170 390 390 1170 1170 390 390 1170 1170 390 390 1170 1170 390 390 1170 1170 390 390 1170 1170 390 390 1170 1170 390 390 13260
It has no header
and the last 2 pulses are the footer
. These are meant to identify the pulses as genuine, and the protocol also has some bit checks to filter false positives. We don’t use them for further processing. The next step is to transform this output into 12 groups of 4 pulses (and thereby dropping the footer
pulses).
390 1170 1170 390
390 1170 1170 390
390 1170 1170 390
390 1170 390 1170
390 1170 390 1170
390 1170 1170 390
390 1170 1170 390
390 1170 1170 390
390 1170 1170 390
390 1170 1170 390
390 1170 1170 390
390 1170 1170 390
If we now look at carefully at these groups you can distinguish three types of groups:
390 1170 1170 390
390 1170 390 1170
We then get the following output:
LLLH HLLL LL LL
All H’s can be translated to 1. All L’s can be translated to 0.
Each (group) of numbers has a specific meaning:
0001 1000 000 0
SystemCode
is defined as position of the pulse group that bears the high signal in the first grouping (i.e. if the third pulse group is high then systemcode is 3)ProgramCode
is defined as the position of the pulse group that bears the high signal in the second grouping (i.e. if the second pulse group is high then systemcode is 2)State
defines whether a devices needs to be turned On or Off. If it bears the high pulse group - the device must be turned off, if it bears the low pulse group it must be turned onSo this code represents:
Another example:
1000 0010 000 1