From f846e4570eb335be6362abbd366f75cbb7cd09c1 Mon Sep 17 00:00:00 2001 From: Tobias Sauerwein Date: Fri, 8 Dec 2023 09:13:54 +0100 Subject: [PATCH] add missing device type mapping for NIS --- 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, }