File: __init__.py

package info (click to toggle)
devolo-home-control-api 0.19.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 804 kB
  • sloc: python: 3,167; makefile: 3
file content (20 lines) | stat: -rw-r--r-- 742 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""Properties a device might have."""
from .binary_sensor_property import BinarySensorProperty
from .binary_switch_property import BinarySwitchProperty
from .consumption_property import ConsumptionProperty
from .humidity_bar_property import HumidityBarProperty
from .multi_level_sensor_property import MultiLevelSensorProperty
from .multi_level_switch_property import MultiLevelSwitchProperty
from .remote_control_property import RemoteControlProperty
from .settings_property import SettingsProperty

__all__ = [
    "BinarySensorProperty",
    "BinarySwitchProperty",
    "ConsumptionProperty",
    "HumidityBarProperty",
    "MultiLevelSensorProperty",
    "MultiLevelSwitchProperty",
    "RemoteControlProperty",
    "SettingsProperty",
]