Skip to content

Commit 8730f31

Browse files
committed
Add support HmIPW-DRI16
1 parent 07a340c commit 8730f31

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [UNRELEASED](https://github.com/hahn-th/homematicip-rest-api/compare/2.0.7..master)
99

10+
### Added
11+
12+
- Add support for HmIPW-DRI16
13+
1014
## [2.0.7](https://github.com/hahn-th/homematicip-rest-api/compare/2.0.6..2.0.7) 2025-06-29
1115

1216
### Changed

src/homematicip/base/enums.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,7 @@ class DeviceType(AutoNameEnum):
300300
WIRED_DIMMER_3 = auto()
301301
WIRED_DIN_RAIL_ACCESS_POINT = auto()
302302
WIRED_FLOOR_TERMINAL_BLOCK_12 = auto()
303+
WIRED_INPUT_16 = auto()
303304
WIRED_INPUT_32 = auto()
304305
WIRED_INPUT_SWITCH_6 = auto()
305306
WIRED_MOTION_DETECTOR_PUSH_BUTTON = auto()

src/homematicip/class_maps.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@
106106
DeviceType.WIRED_DIMMER_3: WiredDimmer3,
107107
DeviceType.WIRED_DIN_RAIL_ACCESS_POINT: WiredDinRailAccessPoint,
108108
DeviceType.WIRED_FLOOR_TERMINAL_BLOCK_12: WiredFloorTerminalBlock12,
109+
DeviceType.WIRED_INPUT_16: WiredInput32,
109110
DeviceType.WIRED_INPUT_32: WiredInput32,
110111
DeviceType.WIRED_INPUT_SWITCH_6: WiredInputSwitch6,
111112
DeviceType.WIRED_MOTION_DETECTOR_PUSH_BUTTON: WiredMotionDetectorPushButton,

0 commit comments

Comments
 (0)