From eb794b85c1e014893098a43bb4dc2c0862854af3 Mon Sep 17 00:00:00 2001 From: luosheng Date: Sun, 12 Feb 2023 08:44:27 +0800 Subject: [PATCH] Readme Fix --- Modbus.Net/Modbus.Net/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Modbus.Net/Modbus.Net/README.md b/Modbus.Net/Modbus.Net/README.md index c3f7e61..8ec7c83 100644 --- a/Modbus.Net/Modbus.Net/README.md +++ b/Modbus.Net/Modbus.Net/README.md @@ -227,7 +227,8 @@ machine.SetDatas has four types. It is referenced as the first parameter. 3. MachineDataType.Id: the key of the dictionary of the second paramenter is ID. 4. MachineDataType.Name: the key of the dictionary of the second paramenter is name. -## Implementing Your Own Protocol +## Implementing Your Own Protocol + The main target of Modbus.Net is building a high extensable hardware communication protocol, so we allow everyone to extend the protocol. To extend Modbus.Net, first of all ValueHelper.cs in Modbus.Net is a really powerful tool that you can use to modify values in byte array.There are two ValueHelpers: ValueHelper(Little Endian) and BigEndianValueHelper(Big Endian). Remember using the correct one.