From ffbba2d64266719f6e7c835350f1d308c2d1f39b Mon Sep 17 00:00:00 2001 From: Kevin Herron Date: Sat, 28 Dec 2024 10:27:22 -0800 Subject: [PATCH] Update README.md --- README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 57ff4de..473e514 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,10 @@ [![Maven Central](https://img.shields.io/maven-central/v/com.digitalpetri.modbus/modbus.svg)](https://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.digitalpetri.modbus%22%20AND%20a%3A%22modbus%22) -A modern, performant, easy to use client and server implementation of Modbus TCP, Modbus RTU/TCP, and Modbus RTU/Serial for Java 17+. +A modern, performant, easy to use client and server implementation of Modbus, supporting: +- Modbus TCP +- Modbus TCP Security (Modbus TCP with TLS) +- Modbus RTU on Serial +- Modbus RTU on TCP ### Quick Start Examples @@ -22,7 +26,7 @@ ReadHoldingRegistersResponse response = client.readHoldingRegisters( System.out.println("Response: " + response); ``` -#### Modbus RTU/Serial Client +#### Modbus RTU on Serial Client ```java var transport = SerialPortClientTransport.create(cfg -> { cfg.serialPort = "/dev/ttyUSB0"; @@ -51,7 +55,7 @@ System.out.println("Response: " + response); com.digitalpetri.modbus modbus-tcp - 2.0.1 + 2.1.0 ``` @@ -60,7 +64,7 @@ System.out.println("Response: " + response); com.digitalpetri.modbus modbus-serial - 2.0.1 + 2.1.0 ```