Seite 1 von 1

Zigbee Thermostat - Boostfunktion

Verfasst: 5. Feb 2023 15:32
von Spuckiii
Hallo liebes Forum,

ich habe mal wieder eine Verständnisfrage. Ich habe folgendes Heizungsmodul gekauft:
https://www.zigbee2mqtt.io/devices/BRT-100-TRV.html
und wollte die Boost Time per Slider setzen.

Boost_heating_countdown (numeric)
Countdown in minutes. Value can be found in the published state on the boost_heating_countdown property. It's not possible to read (/get) or write (/set) this value. The minimal value is 0 and the maximum value is 15. The unit of this value is minutes

ich habe ein Channel (Number) angelegt, und mit das Device mit "zigbee2mqtt/heb/set/Boost_heating_countdown" im MQTT Command Topic angelegt. Absolute Min und Max mit je 0 und 15 und in der Show advance die Unit of Measurement "minutes" eingetragen.

Dann habe ich ein Item angelegt (Type value: oh-slider-card) und unter Metadaten ein Default STandalone Widget (oh-slider-card) hinzugefügt. auch hier habe ich max und min und unit gesetzt
value: oh-slider-card
config:
unit: minutes
min: 0
scaleSteps: 1
max: 15
releaseOnly: true
scale: true
step: 1
label: true
title: Boost Dauer
Wenn ich nun den Slider nutzen möchte um die Boost Dauer einzustellen sagt mir Zigbee No converter avaible for boost_heating_contdown(4) - wenn ich es auf 4 Minuten stelle.
Was mache ich falsch?

VG
Martin

Re: Zigbee Thermostat - Boostfunktion

Verfasst: 5. Feb 2023 19:06
von udo1toni
Also für mich ist die Aussage:
It's not possible to read (/get) or write (/set) this value.
eigentlich, dass der Wert weder (gezielt) gelesen noch geschrieben werden kann.
Das heißt für mich, der Wert wird zwar gesendet, so dass man ihn anzeigen kann, man kann aber nicht gezielt danach fragen. Genausowenig kann man ihn setzen.

Re: Zigbee Thermostat - Boostfunktion

Verfasst: 5. Feb 2023 20:07
von Spuckiii
Hallo Udo,

ja das stimmt hab ich jetzt auch gelesen. Aber der Eintrag darunter Boost_heating_countdown_time_set welches ich ja mit Set ja setzten kann kommt aber dulie gleiche Meldung.

VG
Martin

Re: Zigbee Thermostat - Boostfunktion

Verfasst: 5. Feb 2023 21:37
von udo1toni
Ich streiche das erst mal... hab da das Topic verwechselt.

Re: Zigbee Thermostat - Boostfunktion

Verfasst: 5. Feb 2023 21:45
von udo1toni
Jetzt...
Boost_heating_countdown_time_set (numeric)

Boost Time Setting 100 sec - 900 sec, (default = 300 sec). Value can be found in the published state on the boost_heating_countdown_time_set property. It's not possible to read (/get) this value. To write (/set) a value publish a message to topic zigbee2mqtt/FRIENDLY_NAME/set with payload {"boost_heating_countdown_time_set": NEW_VALUE}. The minimal value is 100 and the maximum value is 900. The unit of this value is seconds.
Also, um den Countdown zu setzen musst Du die Zeit in Sekunden angeben, erlaubt sind Werte von 100 bis 900, Du musst den Payload als JSON formatieren:

Code: Alles auswählen

formatBeforePublish: {"boost_heating_countdown_time_set": %s}

Re: Zigbee Thermostat - Boostfunktion

Verfasst: 7. Feb 2023 08:27
von Spuckiii
Hallo Udo,

danke, hat so geklappt. :-)

LG
Martin