mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-23 11:43:34 +00:00
f5175c5632
Add initial support for the cloud module. Adds a new binary sensor: `Cloud connection (cloud_connection): False`
17 lines
435 B
Python
17 lines
435 B
Python
"""Modules for SMART devices."""
|
|
from .childdevicemodule import ChildDeviceModule
|
|
from .cloudmodule import CloudModule
|
|
from .devicemodule import DeviceModule
|
|
from .energymodule import EnergyModule
|
|
from .lighttransitionmodule import LightTransitionModule
|
|
from .timemodule import TimeModule
|
|
|
|
__all__ = [
|
|
"TimeModule",
|
|
"EnergyModule",
|
|
"DeviceModule",
|
|
"ChildDeviceModule",
|
|
"CloudModule",
|
|
"LightTransitionModule",
|
|
]
|