Add Siren to Z-Wave.Me integration (#67200)

* Siren integration

* Clean up

Co-authored-by: Dmitry Vlasov <kerbalspacema@gmail.com>
Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
This commit is contained in:
Poltorak Serguei
2022-03-09 11:09:29 +03:00
committed by GitHub
parent 36385396b0
commit c6952a0ee3
6 changed files with 55 additions and 3 deletions

View File

@@ -16,6 +16,7 @@ class ZWaveMePlatform(StrEnum):
NUMBER = "switchMultilevel"
SWITCH = "switchBinary"
SENSOR = "sensorMultilevel"
SIREN = "siren"
RGBW_LIGHT = "switchRGBW"
RGB_LIGHT = "switchRGB"
@@ -28,5 +29,6 @@ PLATFORMS = [
Platform.LOCK,
Platform.NUMBER,
Platform.SENSOR,
Platform.SIREN,
Platform.SWITCH,
]