Skip to content

Commit

Permalink
Minor fix in Soda-Handle position update
Browse files Browse the repository at this point in the history
  • Loading branch information
theimo1221 committed Oct 12, 2024
1 parent f40a550 commit 108b69e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 17 deletions.
28 changes: 12 additions & 16 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 108b69e

Please sign in to comment.