Add support for Nice G.O. HAE00080 wall station (#133186)
parent
3a8b0b3ea6
commit
b7ff27122a
|
@ -15,8 +15,8 @@ CONF_REFRESH_TOKEN_CREATION_TIME = "refresh_token_creation_time"
|
|||
REFRESH_TOKEN_EXPIRY_TIME = timedelta(days=30)
|
||||
|
||||
SUPPORTED_DEVICE_TYPES = {
|
||||
Platform.LIGHT: ["WallStation"],
|
||||
Platform.SWITCH: ["WallStation"],
|
||||
Platform.LIGHT: ["WallStation", "WallStation_ESP32"],
|
||||
Platform.SWITCH: ["WallStation", "WallStation_ESP32"],
|
||||
}
|
||||
KNOWN_UNSUPPORTED_DEVICE_TYPES = {
|
||||
Platform.LIGHT: ["Mms100"],
|
||||
|
|
|
@ -21,6 +21,7 @@ from .entity import NiceGOEntity
|
|||
DEVICE_CLASSES = {
|
||||
"WallStation": CoverDeviceClass.GARAGE,
|
||||
"Mms100": CoverDeviceClass.GATE,
|
||||
"WallStation_ESP32": CoverDeviceClass.GARAGE,
|
||||
}
|
||||
PARALLEL_UPDATES = 1
|
||||
|
||||
|
|
Loading…
Reference in New Issue