mirror of
				https://github.com/python-kasa/python-kasa.git
				synced 2025-10-31 12:41:54 +00:00 
			
		
		
		
	 09fce3f426
			
		
	
	09fce3f426
	
	
	
		
			
			Add a common interface for the `childsetup` module across `smart` and `smartcam` hubs. Co-authored-by: Teemu R. <tpr@iki.fi>
		
			
				
	
	
		
			26 lines
		
	
	
		
			512 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			512 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| """Package for interfaces."""
 | |
| 
 | |
| from .childsetup import ChildSetup
 | |
| 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
 | |
| from .thermostat import Thermostat, ThermostatState
 | |
| from .time import Time
 | |
| 
 | |
| __all__ = [
 | |
|     "ChildSetup",
 | |
|     "Fan",
 | |
|     "Energy",
 | |
|     "Led",
 | |
|     "Light",
 | |
|     "LightEffect",
 | |
|     "LightState",
 | |
|     "LightPreset",
 | |
|     "Thermostat",
 | |
|     "ThermostatState",
 | |
|     "Time",
 | |
| ]
 |