python-kasa/kasa/interfaces/__init__.py
Steven B b4a6df2b5c
Add common energy module and deprecate device emeter attributes (#976)
Consolidates logic for energy monitoring across smart and iot devices.
Deprecates emeter attributes in favour of common names.
2024-06-17 11:22:05 +01:00

19 lines
331 B
Python

"""Package for interfaces."""
from .energy import Energy
from .fan import Fan
from .led import Led
from .light import Light, LightState
from .lighteffect import LightEffect
from .lightpreset import LightPreset
__all__ = [
"Fan",
"Energy",
"Led",
"Light",
"LightEffect",
"LightState",
"LightPreset",
]