From 92f21bd47387c4d2ce8e3fd895739b2705584bab Mon Sep 17 00:00:00 2001 From: username081581 Date: Sun, 27 Aug 2023 21:26:34 +0200 Subject: [PATCH] HmIP-DLD is a OperationLockableDevice --- CHANGELOG.md | 1 + homematicip/device.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 40dd1b8f..4961bb42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - :warning: Functions for interacting with the device (set-shutter-level i.E.) are added to functionalChannel classes. This is because actions are bound to channels, not the devices. This is the foundation for more changes in the future. These functions in device classes are deprecated soon. - Add field channelRole to MultiModeInputChannel - Default Channel for device HmIP-DLD is set to 1 +- HmIP-DLD is a OperationLockableDevice - Add support for IOptionalFeatureMountingOrientation - Add support for IOptionalFeatureControlsMountingOrientation - Add support for HmIP-eTRV-CL diff --git a/homematicip/device.py b/homematicip/device.py index 629ff8e4..86e8d3a0 100644 --- a/homematicip/device.py +++ b/homematicip/device.py @@ -2332,7 +2332,7 @@ def from_json(self, js): self.set_attr_from_dict("temperatureExternalTwo", c) -class DoorLockDrive(Device): +class DoorLockDrive(OperationLockableDevice): """HmIP-DLD""" def __init__(self, connection):