12345678910111213141516171819202122 |
- """Keypad parser."""
- from __future__ import annotations
- import logging
- _LOGGER = logging.getLogger(__name__)
- def process_wokeypad(
- data: bytes | None,
- mfr_data: bytes | None,
- ) -> dict[str, bool | int | None]:
- """Process woKeypad services data."""
- if data is None or mfr_data is None:
- return {"battery": None, "attempt_state": None}
- _LOGGER.debug("mfr_data: %s", mfr_data.hex())
- if data:
- _LOGGER.debug("data: %s", data.hex())
- return {"battery": data[2] & 0b01111111, "attempt_state": mfr_data[6]}
|