This is an old revision of the document!
Elro Home Control Switches
Brand | Protocol |
---|---|
Brennenstuhl Comfort | brennenstuhl |
Elro Home Control | elro_hc |
-s --systemcode=systemcode control a device with this systemcode -u --unitcode=unitcode control a device with this unitcode -t --on send an on signal -f --off send an off signal
"living": { "name": "Living", "switch": { "name": "Switch", "protocol": [ "elro_hc" ], "id": [{ "systemcode": 31, "unitcode": 1 }], "state": "on" } }
Setting | Default | Format | Description |
---|---|---|---|
gui-readonly | 0 | 1 or 0 | Disable controlling this device from the GUIs |
This protocol sends 50 pulses like this
320 960 320 960 320 960 320 960 320 960 320 960 320 960 320 960 320 960 320 960 320 960 320 960 320 960 960 320 320 960 960 320 320 960 960 320 320 960 960 320 320 960 320 960 320 960 960 320 320 9920
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).
320 960 320 960 320 960 320 960 320 960 320 960 320 960 320 960 320 960 320 960 320 960 320 960 320 960 960 320 320 960 960 320 320 960 960 320 320 960 960 320 320 960 320 960 320 960 960 320 320 9920
If we now look at carefully at these groups you can distinguish two types of groups:
320 960 320 960
320 960 960 320
So the first group is defined by a high 4th pulse and the second group has a low 4th pulse. In this case we say a high 4th pulse means a 0 and a low 4th pulse means a 1. We then get the following output:
00000 01111 0 1
Each (group) of numbers has a specific meaning:
00000 01111 0 1
SystemCode
is defined as a binary numberUnitCode
is defined as a binary numberState
defines whether a devices needs to be turned On or OffCheck
defines whether a devices needs to be turned On or Off (but is inverse)So this code represents:
Another example:
11111 11011 1 0