mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-22 19:23:34 +00:00
273c541fcc
Adds light preset common module for switching to presets and saving presets. Deprecates the `presets` attribute and `save_preset` method from the `bulb` interface in favour of the modular approach. Allows setting preset for `iot` which was not previously supported.
17 lines
290 B
Python
17 lines
290 B
Python
"""Package for interfaces."""
|
|
|
|
from .fan import Fan
|
|
from .led import Led
|
|
from .light import Light, LightState
|
|
from .lighteffect import LightEffect
|
|
from .lightpreset import LightPreset
|
|
|
|
__all__ = [
|
|
"Fan",
|
|
"Led",
|
|
"Light",
|
|
"LightEffect",
|
|
"LightState",
|
|
"LightPreset",
|
|
]
|