Add documentation for hvac_on_value and hvac_off_value in Modbus clim… (#35245)

* Add documentation for hvac_on_value and hvac_off_value in Modbus climate configuration

* Update hvac_onoff_register documentation

* Update docs
This commit is contained in:
Ілля Піскурьов 2025-01-14 07:23:32 +02:00 committed by GitHub
parent a21084178f
commit 75b815f15b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -756,6 +756,25 @@ climates:
description: "Value corresponding to Fan Diffuse mode." description: "Value corresponding to Fan Diffuse mode."
required: false required: false
type: integer type: integer
hvac_onoff_register:
description: "Address of On/Off state.
When the value defined by `hvac_off_value` is read from this register, the HVAC
state is set to Off. Otherwise, the `hvac_mode_register` dictates the state
of the HVAC. If no such register is defined, it defaults to Auto.
When the HVAC mode is set to Off, the value defined by `hvac_off_value` is written to
the register, otherwise the value defined by `hvac_on_value` is written."
required: false
type: integer
hvac_on_value:
description: "The value that will be written to the `hvac_onoff_register` to turn the HVAC system on.
If not specified, the default value is 1."
required: false
type: integer
hvac_off_value:
description: "The value that will be written to the `hvac_onoff_register` to turn the HVAC system off.
If not specified, the default value is 0."
required: false
type: integer
swing_mode_register: swing_mode_register:
description: "Configuration of the register for swing mode" description: "Configuration of the register for swing mode"
required: false required: false