From 7f2c0e03ebcf30c51401152e675fcf52be31a3fa Mon Sep 17 00:00:00 2001 From: Bruno Enten Date: Thu, 21 Sep 2023 11:21:42 +0200 Subject: [PATCH] add write_registers to climate target temperature (#28376) Co-authored-by: Franck Nijhof --- source/_integrations/modbus.markdown | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/_integrations/modbus.markdown b/source/_integrations/modbus.markdown index 852d0d82075..2ff756a62b0 100644 --- a/source/_integrations/modbus.markdown +++ b/source/_integrations/modbus.markdown @@ -712,6 +712,11 @@ climates: description: "Register address for target temperature (Setpoint)." required: true type: integer + target_temp_write_registers: + description: "If `true` use `write_registers` for target temperature." + required: false + type: boolean + default: false temp_step: description: "Step size target temperature." required: false @@ -758,6 +763,7 @@ modbus: max_temp: 30 structure: ">f" target_temp_register: 2782 + target_temp_write_registers: true temp_step: 1 temperature_unit: C ```