Add WallSwitch device type and autogenerate supported devices docs (#758)

This commit is contained in:
Steven B
2024-03-01 18:32:45 +00:00
committed by GitHub
parent 0306e05fb9
commit fcad0d2344
21 changed files with 714 additions and 211 deletions

View File

@@ -3,7 +3,7 @@ from .iotbulb import IotBulb
from .iotdevice import IotDevice
from .iotdimmer import IotDimmer
from .iotlightstrip import IotLightStrip
from .iotplug import IotPlug
from .iotplug import IotPlug, IotWallSwitch
from .iotstrip import IotStrip
__all__ = [
@@ -13,4 +13,5 @@ __all__ = [
"IotStrip",
"IotDimmer",
"IotLightStrip",
"IotWallSwitch",
]