From 6ed7b41f102318c8b11bbe35547b4322acf1d544 Mon Sep 17 00:00:00 2001 From: Harrison Pace Date: Mon, 11 Nov 2019 15:57:33 +1100 Subject: [PATCH] =?UTF-8?q?MODBUS=20Component:=20Fix=20write=5Fregister=20?= =?UTF-8?q?service=20attribute=20(name=20-=E2=80=A6=20(#11136)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit hub is the actual attribute used. name is incorrect. --- source/_integrations/modbus.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_integrations/modbus.markdown b/source/_integrations/modbus.markdown index 9027a1fdfa9..33617d0fc2d 100644 --- a/source/_integrations/modbus.markdown +++ b/source/_integrations/modbus.markdown @@ -141,7 +141,7 @@ modbus: | Attribute | Description | | --------- | ----------- | -| name | Hub name (defaults to 'default' when omitted) | +| hub | Hub name (defaults to 'default' when omitted) | | unit | Slave address (set to 255 you talk to Modbus via TCP) | | address | Address of the Register (e.g., 138) | | value | A single value or an array of 16-bit values. Single value will call modbus function code 6. Array will call modbus function code 16. Array might need reverse ordering. E.g., to set 0x0004 you might need to set `[4,0]` |