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 28 29 30 31
|
"""Traits for Q10 B01 devices."""
from roborock.devices.traits import Trait
from roborock.devices.transport.mqtt_channel import MqttChannel
from .command import CommandTrait
from .vacuum import VacuumTrait
__all__ = [
"Q10PropertiesApi",
]
class Q10PropertiesApi(Trait):
"""API for interacting with B01 devices."""
command: CommandTrait
"""Trait for sending commands to Q10 devices."""
vacuum: VacuumTrait
"""Trait for sending vacuum related commands to Q10 devices."""
def __init__(self, channel: MqttChannel) -> None:
"""Initialize the B01Props API."""
self.command = CommandTrait(channel)
self.vacuum = VacuumTrait(self.command)
def create(channel: MqttChannel) -> Q10PropertiesApi:
"""Create traits for B01 devices."""
return Q10PropertiesApi(channel)
|