From 27f67813ca7302f2b6b9c2f928a4673a3b442f0f Mon Sep 17 00:00:00 2001 From: FalcoGoodbody Date: Wed, 9 Sep 2020 23:29:15 +0200 Subject: [PATCH] added startAddress at ReadClass --- Home.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Home.md b/Home.md index b6fb853..4c1f32c 100644 --- a/Home.md +++ b/Home.md @@ -283,7 +283,7 @@ public class TestClass ``` then add the code to read or write the complete struct ```csharp -// reads a struct from DataBlock 1 +// reads a struct from DataBlock 1, startAddress 0 TestClass testClass = new TestClass(); -plc.ReadClass(testClass, 1); +plc.ReadClass(testClass, 1, 0); ```