File: blind_tilt.py

package info (click to toggle)
pyswitchbot 0.72.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 876 kB
  • sloc: python: 12,717; makefile: 2
file content (27 lines) | stat: -rw-r--r-- 827 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
"""Library to handle connection with Switchbot."""

from __future__ import annotations


def process_woblindtilt(
    data: bytes | None, mfr_data: bytes | None, reverse: bool = False
) -> dict[str, bool | int]:
    """Process woBlindTilt services data."""
    if mfr_data is None:
        return {}

    device_data = mfr_data[6:]

    _tilt = max(min(device_data[2] & 0b01111111, 100), 0)
    _in_motion = bool(device_data[2] & 0b10000000)
    _light_level = (device_data[3] >> 4) & 0b00001111
    _calibrated = bool(device_data[1] & 0b00000001)

    return {
        "calibration": _calibrated,
        "battery": data[2] & 0b01111111 if data else None,
        "inMotion": _in_motion,
        "tilt": (100 - _tilt) if reverse else _tilt,
        "lightLevel": _light_level,
        "sequence_number": device_data[0],
    }