hubmini_matter.py 912 B

12345678910111213141516171819202122232425262728293031323334353637
  1. """Hubmini matter parser."""
  2. from __future__ import annotations
  3. from typing import Any
  4. def process_hubmini_matter(
  5. data: bytes | None, mfr_data: bytes | None
  6. ) -> dict[str, Any]:
  7. """Process Hubmini matter sensor manufacturer data."""
  8. temp_data = None
  9. if mfr_data:
  10. temp_data = mfr_data[13:16]
  11. if not temp_data:
  12. return {}
  13. _temp_sign = 1 if temp_data[1] & 0b10000000 else -1
  14. _temp_c = _temp_sign * (
  15. (temp_data[1] & 0b01111111) + ((temp_data[0] & 0b00001111) / 10)
  16. )
  17. _temp_f = (_temp_c * 9 / 5) + 32
  18. _temp_f = (_temp_f * 10) / 10
  19. humidity = temp_data[2] & 0b01111111
  20. if _temp_c == 0 and humidity == 0:
  21. return {}
  22. paraser_data = {
  23. "temp": {"c": _temp_c, "f": _temp_f},
  24. "temperature": _temp_c,
  25. "fahrenheit": bool(temp_data[2] & 0b10000000),
  26. "humidity": humidity,
  27. }
  28. return paraser_data