From b6a3b012bb2f356aef9df0acc729b77f790c87d3 Mon Sep 17 00:00:00 2001 From: uSlackr Date: Mon, 14 Feb 2022 12:17:19 -0500 Subject: [PATCH] Correct modbus address limits (#66367) --- homeassistant/components/modbus/services.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/homeassistant/components/modbus/services.yaml b/homeassistant/components/modbus/services.yaml index 835927e4627..87e8b98fa21 100644 --- a/homeassistant/components/modbus/services.yaml +++ b/homeassistant/components/modbus/services.yaml @@ -8,8 +8,8 @@ write_coil: required: true selector: number: - min: 1 - max: 255 + min: 0 + max: 65535 state: name: State description: State to write. @@ -42,8 +42,8 @@ write_register: required: true selector: number: - min: 1 - max: 255 + min: 0 + max: 65535 unit: name: Unit description: Address of the modbus unit.