Skip to content

Commit 3adf7d5

Browse files
Koenkkburmistrzak
andauthored
fix(ignore): update zigbee-herdsman-converters to 25.99.0 (#30481)
Co-authored-by: burmistrzak <[email protected]>
1 parent 1147cf1 commit 3adf7d5

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"winston-transport": "^4.9.0",
6464
"ws": "^8.18.1",
6565
"zigbee-herdsman": "8.0.2",
66-
"zigbee-herdsman-converters": "25.98.0",
66+
"zigbee-herdsman-converters": "25.99.0",
6767
"zigbee2mqtt-frontend": "0.9.21",
6868
"zigbee2mqtt-windfront": "2.6.2"
6969
},

pnpm-lock.yaml

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/extensions/homeassistant.test.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1218,10 +1218,13 @@ describe("Extension: HomeAssistant", () => {
12181218
},
12191219
max_temp: "30",
12201220
min_temp: "5",
1221-
mode_command_topic: "zigbee2mqtt/bosch_rm230z/set/system_mode",
1222-
mode_state_template: "{{ value_json.system_mode }}",
1221+
mode_command_topic: "zigbee2mqtt/bosch_rm230z/set",
1222+
mode_state_template:
1223+
"{% set values = {'schedule':'auto','manual':'heat','pause':'off'} %}{% set value = value_json.operating_mode %}{% if value == \"manual\" %}{{ value_json.system_mode }}{% else %}{{ values[value] if value in values.keys() else 'off' }}{% endif %}",
1224+
mode_command_template:
1225+
"{% set values = { 'auto':'schedule','heat':'manual','cool':'manual','off':'pause'} %}{% if value == \"heat\" or value == \"cool\" %}{\"operating_mode\": \"manual\", \"system_mode\": \"{{ value }}\"}{% else %}{\"operating_mode\": \"{{ values[value] if value in values.keys() else 'pause' }}\"}{% endif %}",
12231226
mode_state_topic: "zigbee2mqtt/bosch_rm230z",
1224-
modes: ["off", "heat", "cool"],
1227+
modes: ["off", "heat", "cool", "auto"],
12251228
name: null,
12261229
object_id: "bosch_rm230z",
12271230
origin,

0 commit comments

Comments
 (0)