Add common childsetup interface (#1470)

Add a common interface for the `childsetup` module across `smart` and `smartcam` hubs.
Co-authored-by: Teemu R. <tpr@iki.fi>
This commit is contained in:
Steven B.
2025-01-24 08:08:04 +00:00
committed by GitHub
parent b701441215
commit 09fce3f426
15 changed files with 185 additions and 61 deletions

View File

@@ -1,5 +1,6 @@
"""Package for interfaces."""
from .childsetup import ChildSetup
from .energy import Energy
from .fan import Fan
from .led import Led
@@ -10,6 +11,7 @@ from .thermostat import Thermostat, ThermostatState
from .time import Time
__all__ = [
"ChildSetup",
"Fan",
"Energy",
"Led",