Feature | Support |
Sending | |
Receiving | |
Config |
Supported Brands
Brand | Protocol |
SC2262 | sc2262 |
Sender Arguments
None
Config
1 2 3 4 5 6 7 8 9 10 11 12 | {
"devices": {
"contact": {
"protocol": [ "sc2262" ],
"id": [{
"systemcode": 31,
"unitcode": 0
}],
"state": "closed"
}
}
}
|
Option | Value |
id | 0 - 31 |
code | 0 - 31 |
state | opened / closed |
Optional Settings
None
Protocol
This protocol sends 50 pulses like this
432 1296 1296 432 432 1296 1296 432 432 1296 1296 432 432 1296 1296 432 432 1296 1296 432 432 1296 1296 432 432 1296 1296 432 432 1728 1296 432 432 1296 432 1296 432 1296 1296 432 1296 432 1296 432 1296 432 1296 432 432 13392
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).
The first six pulses are the address bits, followed by upto another 6 Address/Data Bits. Address Bits can have three states: 0, 1, F (tri-state). Data Bits have only two states: 0 or 1.
432 1296 1296 432
432 1296 1296 432
432 1296 1296 432
432 1296 1296 432
432 1296 1296 432
432 1296 1296 432
432 1296 1296 432
432 1728 1296 432
432 1296 432 1296
432 1296 1296 432
1296 432 1296 432
1296 432 1296 432
432 14688
If we now take a careful look at these groups you can distinguish three types of groups:
432 1296 432 1296
- Logical Zero1296 432 1296 432
- Logical One432 1296 1296 432
- Logical Tri-StateFFFFFF FF0F11
Each (group) of numbers has a specific meaning:
Depending on the device the Unit Code my be shorter in order to provide more bits for state / data value conditions.
FFFFFF FF0F11
So this code represents:
{
"devices": {
"window": {
"protocol": [ "sc2262" ],
"id": [{
"systemcode": 0,
"unitcode": 8
}],
"state": "closed"
}
},
"gui": {
"window": {
"name": "Bedroom",
"group": [ "Windows" ],
"media": [ "all" ]
}
}
}
This code sets the state to opened:
pilight-send -p raw -c "432 1296 1296 432 432 1296 1296 432 432 1296 1296 432 432 1296 1296 432 432 1296 1296 432 432 1296 1296 432 432 1296 1296 432 432 1728 1296 432 432 1296 432 1296 432 1296 1296 432 1296 432 1296 432 1296 432 1296 432 432 14680"
This code sets the state to closed:
pilight-send -p raw -c "432 1296 1296 432 432 1296 1296 432 432 1296 1296 432 432 1296 1296 432 432 1296 1296 432 432 1296 1296 432 432 1296 1296 432 432 1728 1296 432 432 1296 432 1296 432 1296 1296 432 1296 432 1296 432 432 1296 432 1296 432 14681"