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 (14 lines) | stat: -rw-r--r-- 561 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""Module for sending device specific commands to Roborock devices.

This module provides a application-level interface for sending commands to Roborock
devices. These modules can be used by traits (higher level APIs) to send commands.

Each module may contain details that are common across all traits, and may depend
on the transport level modules (e.g. MQTT, Local device) for issuing the
commands.

The lowest level protocol encoding is handled in `roborock.protocols` which
have no dependencies on the transport level modules.
"""

__all__: list[str] = []