xiaoguohua fa17c7ffb8 提交基类库 1 개월 전
..
release 38a2f2f6c0 maven中不太容易下载modbus4j库,所以加入该库源码 3 달 전
src fa17c7ffb8 提交基类库 1 개월 전
src-opt 38a2f2f6c0 maven中不太容易下载modbus4j库,所以加入该库源码 3 달 전
src_cdc 38a2f2f6c0 maven中不太容易下载modbus4j库,所以加入该库源码 3 달 전
src_test 38a2f2f6c0 maven中不太容易下载modbus4j库,所以加入该库源码 3 달 전
.gitignore 38a2f2f6c0 maven中不太容易下载modbus4j库,所以加入该库源码 3 달 전
README.md 38a2f2f6c0 maven中不太容易下载modbus4j库,所以加入该库源码 3 달 전
README.txt 38a2f2f6c0 maven中不太容易下载modbus4j库,所以加入该库源码 3 달 전
RELEASE-NOTES 38a2f2f6c0 maven中不太容易下载modbus4j库,所以加入该库源码 3 달 전
build-cdc.xml 38a2f2f6c0 maven中不太容易下载modbus4j库,所以加入该库源码 3 달 전
build.xml 38a2f2f6c0 maven中不太容易下载modbus4j库,所以加入该库源码 3 달 전
license.txt 38a2f2f6c0 maven中不太容易下载modbus4j库,所以加入该库源码 3 달 전
pom.xml 38a2f2f6c0 maven中不太容易下载modbus4j库,所以加入该库源码 3 달 전

README.md

modbus4j

A high-performance and ease-of-use implementation of the Modbus protocol written in Java by Infinite Automation Systems and Serotonin Software. Supports ASCII, RTU, TCP, and UDP transports as slave or master, automatic request partitioning and response data type parsing.

For support and general help please see our Forum

Commercial licenses are available by contacting: sales@radixiot.com

A public Maven Repository is now available with the latest builds add this to your pom.xml

<repositories>
    <repository>
        <releases>
            <enabled>false</enabled>
        </releases>
        <snapshots>
            <enabled>true</enabled>
        </snapshots>
        <id>ias-snapshots</id>
        <name>Infinite Automation Snapshot Repository</name>
        <url>https://maven.mangoautomation.net/repository/ias-snapshot/</url>
    </repository>
    <repository>
        <releases>
            <enabled>true</enabled>
        </releases>
        <snapshots>
            <enabled>false</enabled>
        </snapshots>
        <id>ias-releases</id>
        <name>Infinite Automation Release Repository</name>
        <url>https://maven.mangoautomation.net/repository/ias-release/</url>
    </repository>
</repositories>

The dependency information is:

<dependency>
    <groupId>com.infiniteautomation</groupId>
    <artifactId>modbus4j</artifactId>
    <version>3.0.3</version>
</dependency>