Silvercrest
Brand | Protocol |
---|---|
Silvercrest | silvercrest |
Unitech | unitech |
Note
The lastest version, Silvercrest (60494) RCS AAA3680-A isn't supported (yet).
-t --on send an on signal -f --off send an off signal -u --unit=unit control a device with this unit code -i --id=id control a device with this id
"living": { "name": "Living", "switch": { "name": "switch", "protocol": [ "silvercrest" ], "id": [{ "systemcode": 22, "unitcode": 0 }], "state": "off" } }
Setting | Default | Format | Description |
---|---|---|---|
gui-readonly | 0 | 1 or 0 | Disable controlling this device from the GUIs |
This protocol sends 50 pulses like this
312 936 936 312 312 936 312 936 312 936 312 936 312 936 936 312 312 936 312 936 312 936 936 312 312 936 312 936 312 936 936 312 312 936 936 312 312 936 936 312 312 936 936 312 312 936 312 936 312 10608
It has no header
and the last 2 pulses are the footer
. These are meant to identify the pulses as genuine. The next step is to transform this output into 12 groups of 4 pulses (and thereby dropping the footer
pulses).
312 936 936 312 312 936 312 936 312 936 312 936 312 936 936 312 312 936 312 936 312 936 936 312 312 936 312 936 312 936 936 312 312 936 936 312 312 936 936 312 312 936 936 312 312 936 312 936 312 10608
If we now look at carefully at these groups you can distinguish two types of groups:
312 936 936 312
312 936 312 936
So the first group is defined by a high 3th pulse and the second group has a low 3rd pulse. In this case we say a high 3rd pulse means a 0 and a high 3rd pulse means a 1. We then get the following output:
01101 01000 01
Each (group) of numbers has a specific meaning:
10110 00010 0 0
Unit
is defined as a binary numberID
is defined as a binary numberCheck
is always the inverse of the stateState
defines whether a devices needs to be turned On or OffSo this code represents: