From 9a3538db89a0e42b28d9dc0c7bd1d8f0815ccd9a Mon Sep 17 00:00:00 2001 From: pkkrusty <79770016+pkkrusty@users.noreply.github.com> Date: Tue, 1 Aug 2023 07:01:50 +0000 Subject: [PATCH 1/2] Add detail to Fronius description Add method for writing certain registers. May belong on Modbus Bridge section, but there are no meter-specific sections on that page. --- docs/Smart-Meter-Interface.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/Smart-Meter-Interface.md b/docs/Smart-Meter-Interface.md index c473a217d5..030adb7f4f 100644 --- a/docs/Smart-Meter-Interface.md +++ b/docs/Smart-Meter-Interface.md @@ -1598,6 +1598,8 @@ After unlocking the meter, you can run the following script ### Huawei SUN2000-10KTL (Modbus) +For writing 32-bit registers like 40126, use ModBus Bridge driver and send two 16-bit numbers. i.e. `modbussend {"deviceaddress": 1, "functioncode": 16, "startaddress":40126, "type":"int16", "count":2, "values":["0","6666"]}` + ??? summary "View script" ``` >D From f07e5dc9354b0fb358c60fd1a48084bf458a0856 Mon Sep 17 00:00:00 2001 From: Barbudor Date: Wed, 6 Sep 2023 22:26:26 +0200 Subject: [PATCH 2/2] Update Smart-Meter-Interface.md --- docs/Smart-Meter-Interface.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Smart-Meter-Interface.md b/docs/Smart-Meter-Interface.md index 030adb7f4f..2075c570d2 100644 --- a/docs/Smart-Meter-Interface.md +++ b/docs/Smart-Meter-Interface.md @@ -1598,7 +1598,7 @@ After unlocking the meter, you can run the following script ### Huawei SUN2000-10KTL (Modbus) -For writing 32-bit registers like 40126, use ModBus Bridge driver and send two 16-bit numbers. i.e. `modbussend {"deviceaddress": 1, "functioncode": 16, "startaddress":40126, "type":"int16", "count":2, "values":["0","6666"]}` +For writing 32-bit registers like 40126, use [ModBus Bridge](Modbus-Bridge) driver and send two 16-bit numbers. i.e. `modbussend {"deviceaddress": 1, "functioncode": 16, "startaddress":40126, "type":"int16", "count":2, "values":["0","6666"]}` ??? summary "View script" ```