mirror of
https://github.com/home-assistant/core.git
synced 2025-07-20 19:57:07 +00:00
Add support for Nice G.O. HAE00080 wall station (#133186)
This commit is contained in:
parent
3a8b0b3ea6
commit
b7ff27122a
@ -15,8 +15,8 @@ CONF_REFRESH_TOKEN_CREATION_TIME = "refresh_token_creation_time"
|
|||||||
REFRESH_TOKEN_EXPIRY_TIME = timedelta(days=30)
|
REFRESH_TOKEN_EXPIRY_TIME = timedelta(days=30)
|
||||||
|
|
||||||
SUPPORTED_DEVICE_TYPES = {
|
SUPPORTED_DEVICE_TYPES = {
|
||||||
Platform.LIGHT: ["WallStation"],
|
Platform.LIGHT: ["WallStation", "WallStation_ESP32"],
|
||||||
Platform.SWITCH: ["WallStation"],
|
Platform.SWITCH: ["WallStation", "WallStation_ESP32"],
|
||||||
}
|
}
|
||||||
KNOWN_UNSUPPORTED_DEVICE_TYPES = {
|
KNOWN_UNSUPPORTED_DEVICE_TYPES = {
|
||||||
Platform.LIGHT: ["Mms100"],
|
Platform.LIGHT: ["Mms100"],
|
||||||
|
@ -21,6 +21,7 @@ from .entity import NiceGOEntity
|
|||||||
DEVICE_CLASSES = {
|
DEVICE_CLASSES = {
|
||||||
"WallStation": CoverDeviceClass.GARAGE,
|
"WallStation": CoverDeviceClass.GARAGE,
|
||||||
"Mms100": CoverDeviceClass.GATE,
|
"Mms100": CoverDeviceClass.GATE,
|
||||||
|
"WallStation_ESP32": CoverDeviceClass.GARAGE,
|
||||||
}
|
}
|
||||||
PARALLEL_UPDATES = 1
|
PARALLEL_UPDATES = 1
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user