Skip to content

Commit

Permalink
Add support for Nice G.O. HAE00080 wall station (#133186)
Browse files Browse the repository at this point in the history
  • Loading branch information
IceBotYT authored Dec 18, 2024
1 parent 3a8b0b3 commit b7ff271
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions homeassistant/components/nice_go/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
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"],
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/nice_go/cover.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
DEVICE_CLASSES = {
"WallStation": CoverDeviceClass.GARAGE,
"Mms100": CoverDeviceClass.GATE,
"WallStation_ESP32": CoverDeviceClass.GARAGE,
}
PARALLEL_UPDATES = 1

Expand Down

0 comments on commit b7ff271

Please sign in to comment.