mirror of
https://github.com/mjg59/python-broadlink.git
synced 2024-11-10 18:00:12 +01:00
c3bb598e27
- Only start to count the timer inside the lock. - Improve precision of the timeout option. - Use a context manager for the connection. - Remove SO_REUSEADDR option. Amend: Revert retry_intvl (#506)
51 lines
1.5 KiB
Python
51 lines
1.5 KiB
Python
"""Support for sensors."""
|
|
import struct
|
|
|
|
from .device import device
|
|
from .exceptions import check_error
|
|
|
|
|
|
class a1(device):
|
|
"""Controls a Broadlink A1."""
|
|
|
|
_SENSORS_AND_LEVELS = (
|
|
("light", ("dark", "dim", "normal", "bright")),
|
|
("air_quality", ("excellent", "good", "normal", "bad")),
|
|
("noise", ("quiet", "normal", "noisy")),
|
|
)
|
|
|
|
def __init__(self, *args, **kwargs) -> None:
|
|
"""Initialize the controller."""
|
|
device.__init__(self, *args, **kwargs)
|
|
self.type = "A1"
|
|
|
|
def check_sensors(self) -> dict:
|
|
"""Return the state of the sensors."""
|
|
data = self.check_sensors_raw()
|
|
for sensor, levels in self._SENSORS_AND_LEVELS:
|
|
try:
|
|
data[sensor] = levels[data[sensor]]
|
|
except IndexError:
|
|
data[sensor] = "unknown"
|
|
return data
|
|
|
|
def check_sensors_raw(self) -> dict:
|
|
"""Return the state of the sensors in raw format."""
|
|
packet = bytearray([0x1])
|
|
response = self.send_packet(0x6A, packet)
|
|
check_error(response[0x22:0x24])
|
|
payload = self.decrypt(response[0x38:])
|
|
data = payload[0x4:]
|
|
|
|
temperature = struct.unpack("<bb", data[:0x2])
|
|
temperature = temperature[0x0] + temperature[0x1] / 10.0
|
|
humidity = data[0x2] + data[0x3] / 10.0
|
|
|
|
return {
|
|
"temperature": temperature,
|
|
"humidity": humidity,
|
|
"light": data[0x4],
|
|
"air_quality": data[0x6],
|
|
"noise": data[0x8],
|
|
}
|