"""Library to handle connection with Switchbot.""" from __future__ import annotations def process_woplugmini(data: bytes, mfr_data: bytes | None) -> dict[str, bool | int]: """Process plug mini.""" if mfr_data is None: return {} return { "switchMode": True, "isOn": mfr_data[7] == 0x80, "wifi_rssi": -mfr_data[9], "power": ( ( ( mfr_data[10] << 8 ) + mfr_data[11] ) & 0x7fff ) / 10 # W }