File: __init__.py

package info (click to toggle)
python-roborock 4.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,480 kB
  • sloc: python: 16,602; makefile: 17; sh: 6
file content (28 lines) | stat: -rw-r--r-- 765 bytes parent folder | download
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
"""Module for device traits.

This package contains the trait definitions for different device protocols supported
by Roborock devices.

Submodules
----------
*   `v1`: Contains traits for standard Roborock vacuums (e.g., S-series, Q-series).
    These devices use the V1 protocol and have rich feature sets split into
    granular traits (e.g., `StatusTrait`, `ConsumableTrait`).
*   `a01`: Contains APIs for A01 protocol devices, such as the Dyad (wet/dry vacuum)
    and Zeo (washing machine). These devices use a different communication structure.
*   `b01`: Contains APIs for B01 protocol devices.
"""

from abc import ABC

__all__ = [
    "Trait",
    "traits_mixin",
    "v1",
    "a01",
    "b01",
]


class Trait(ABC):
    """Base class for all traits."""