From c409e5158fcfe8b5968f713dfe4aba455ef93d7a Mon Sep 17 00:00:00 2001 From: Tobias Sauerwein Date: Fri, 8 Dec 2023 12:47:02 +0100 Subject: [PATCH] add missing device type mapping for NIS (#476) --- src/pyatmo/modules/device_types.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pyatmo/modules/device_types.py b/src/pyatmo/modules/device_types.py index deb1f04a..82b23efe 100644 --- a/src/pyatmo/modules/device_types.py +++ b/src/pyatmo/modules/device_types.py @@ -196,6 +196,7 @@ class DeviceCategory(str, Enum): DeviceType.NLJ: DeviceCategory.shutter, DeviceType.BNIL: DeviceCategory.switch, DeviceType.BNLD: DeviceCategory.dimmer, + DeviceType.NIS: DeviceCategory.siren, }