mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-23 03:33:35 +00:00
9473d97ad2
Introduce common module interfaces across smart and iot devices and provide better typing implementation for getting modules to support this.
33 lines
795 B
Python
33 lines
795 B
Python
"""Module for led controls."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from ...interfaces.led import Led
|
|
from ..iotmodule import IotModule
|
|
|
|
|
|
class LedModule(IotModule, Led):
|
|
"""Implementation of led controls."""
|
|
|
|
def query(self) -> dict:
|
|
"""Query to execute during the update cycle."""
|
|
return {}
|
|
|
|
@property
|
|
def mode(self):
|
|
"""LED mode setting.
|
|
|
|
"always", "never"
|
|
"""
|
|
return "always" if self.led else "never"
|
|
|
|
@property
|
|
def led(self) -> bool:
|
|
"""Return the state of the led."""
|
|
sys_info = self.data
|
|
return bool(1 - sys_info["led_off"])
|
|
|
|
async def set_led(self, state: bool):
|
|
"""Set the state of the led (night mode)."""
|
|
return await self.call("set_led_off", {"off": int(not state)})
|