diff --git a/src/pyatmo/room.py b/src/pyatmo/room.py index ff07ea72..899d7424 100644 --- a/src/pyatmo/room.py +++ b/src/pyatmo/room.py @@ -100,13 +100,13 @@ def evaluate_device_type(self) -> None: if "OTM" in self.device_types: self.climate_type = DeviceType.OTM - elif "NRV" in self.device_types: - self.climate_type = DeviceType.NRV elif "NATherm1" in self.device_types: self.climate_type = DeviceType.NATherm1 elif "BNS" in self.device_types: self.climate_type = DeviceType.BNS self.features.add("humidity") + elif "NRV" in self.device_types: + self.climate_type = DeviceType.NRV elif "BNTH" in self.device_types: self.climate_type = DeviceType.BNTH