roller_shade.py 932 B

1234567891011121314151617181920212223242526272829
  1. """Library to handle connection with Switchbot."""
  2. from __future__ import annotations
  3. def process_worollershade(
  4. data: bytes | None, mfr_data: bytes | None, reverse: bool = True
  5. ) -> dict[str, bool | int]:
  6. """Process woRollerShade services data."""
  7. if mfr_data is None:
  8. return {}
  9. device_data = mfr_data[6:]
  10. _position = max(min(device_data[2] & 0b01111111, 100), 0)
  11. _calibrated = bool(device_data[2] & 0b10000000)
  12. _in_motion = bool(device_data[1] & 0b00000110)
  13. _light_level = (device_data[3] >> 4) & 0b00001111
  14. _device_chain = device_data[3] & 0b00001111
  15. return {
  16. "calibration": _calibrated,
  17. "battery": data[2] & 0b01111111 if data else None,
  18. "inMotion": _in_motion,
  19. "position": (100 - _position) if reverse else _position,
  20. "lightLevel": _light_level,
  21. "deviceChain": _device_chain,
  22. "sequence_number": device_data[0],
  23. }