diff --git a/CHANGELOG.md b/CHANGELOG.md index e81c177d..662a0718 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,24 +5,10 @@ ## **WORK IN PROGRESS** * (theimo1221) Update packages --> -## 3.0.0-alpha.90 (2024-10-12) -* (theimo1221) Allow Heating Rod even during winter -* (theimo1221) Generalize Temperature Sensor -* (theimo1221) Generalize Humidity Sensor -* (theimo1221) Generalize Battery Devices -* (theimo1221) Generalize Handle Sensor -* (theimo1221) Prepare Zigbee window handle -* (theimo1221) Implement SodaHandle (https://www.zigbee2mqtt.io/devices/S8.html#soda-s8) a window handle with - temp-/humidity sensor and buttons for up/down - -## 3.0.0-alpha.89 (2024-10-03) +## **WORK IN PROGRESS** -* (theimo1221) Add option to report Victron Battery at interval even without level change. - -## 3.0.0-alpha.88 (2024-09-07) - -* (theimo1221) Make Victron AC Block configurable +* (theimo1221) Minor fix in Soda-Handle position update ## 3.0.0 @@ -84,6 +70,16 @@ * (theimo1221) Add more Dachs Settings to prevent startup during daytime * (theimo1221) Migrate to eslint 9 * (theimo1221) Add possibility to add a heating rod to the dachs +* (theimo1221) Generalize Temperature Sensor +* (theimo1221) Generalize Humidity Sensor +* (theimo1221) Generalize Battery Devices +* (theimo1221) Generalize Handle Sensor +* (theimo1221) Allow Heating Rod even during winter +* (theimo1221) Prepare Zigbee window handle +* (theimo1221) Implement SodaHandle (https://www.zigbee2mqtt.io/devices/S8.html#soda-s8) a window handle with + temp-/humidity sensor and buttons for up/down +* (theimo1221) Add option to report Victron Battery at interval even without level change. +* (theimo1221) Make Victron AC Block configurable ## 2.23.0 (2024-02-25) diff --git a/src/server/devices/zigbee/BaseDevices/zigbeeWindowHandle.ts b/src/server/devices/zigbee/BaseDevices/zigbeeWindowHandle.ts index 510af1a8..e8b01de2 100644 --- a/src/server/devices/zigbee/BaseDevices/zigbeeWindowHandle.ts +++ b/src/server/devices/zigbee/BaseDevices/zigbeeWindowHandle.ts @@ -68,7 +68,7 @@ export class ZigbeeWindowHandle extends ZigbeeDevice implements iHandleSensor, i super.update(idSplit, state, initial, pOverride); switch (idSplit[3]) { case 'position': - this.handleSensor.position = this.toWindowPosition(state.val as string); + this.handleSensor.updatePosition(this.toWindowPosition(state.val as string)); break; case 'battery': this.battery.level = state.val as number;