python-kasa/kasa/fan.py

21 lines
410 B
Python
Raw Normal View History

"""Module for Fan Interface."""
from __future__ import annotations
from abc import ABC, abstractmethod
from .device import Device
class Fan(Device, ABC):
"""Interface for a Fan."""
@property
@abstractmethod
def fan_speed_level(self) -> int:
"""Return fan speed level."""
@abstractmethod
async def set_fan_speed_level(self, level: int):
"""Set fan speed level."""