mirror of
https://github.com/mjg59/python-broadlink.git
synced 2024-11-10 18:00:12 +01:00
12fdf01631
* Improve typing * Use better names * Clean up switch.py * Remove unused import * Run black * Remove unnecessary comments * Clean up climate.py
44 lines
1.2 KiB
Python
44 lines
1.2 KiB
Python
"""Support for alarm kits."""
|
|
from . import exceptions as e
|
|
from .device import Device
|
|
|
|
|
|
class S1C(Device):
|
|
"""Controls a Broadlink S1C."""
|
|
|
|
TYPE = "S1C"
|
|
|
|
_SENSORS_TYPES = {
|
|
0x31: "Door Sensor",
|
|
0x91: "Key Fob",
|
|
0x21: "Motion Sensor",
|
|
}
|
|
|
|
def get_sensors_status(self) -> dict:
|
|
"""Return the state of the sensors."""
|
|
packet = bytearray(16)
|
|
packet[0] = 0x06
|
|
response = self.send_packet(0x6A, packet)
|
|
e.check_error(response[0x22:0x24])
|
|
payload = self.decrypt(response[0x38:])
|
|
count = payload[0x4]
|
|
sensor_data = payload[0x6:]
|
|
sensors = [
|
|
bytearray(sensor_data[i * 83 : (i + 1) * 83])
|
|
for i in range(len(sensor_data) // 83)
|
|
]
|
|
return {
|
|
"count": count,
|
|
"sensors": [
|
|
{
|
|
"status": sensor[0],
|
|
"name": sensor[4:26].decode().strip("\x00"),
|
|
"type": self._SENSORS_TYPES.get(sensor[3], "Unknown"),
|
|
"order": sensor[1],
|
|
"serial": sensor[26:30].hex(),
|
|
}
|
|
for sensor in sensors
|
|
if any(sensor[26:30])
|
|
],
|
|
}
|