"github.com/goburrow/modbus" "github.com/tarm/serial"使用他们来实现串口读取modbus寄存器
时间: 2023-04-08 18:02:37 浏览: 123
qt开源项目借鉴,地址https://github.com/wang-bin/QtAV.git
"github.com/goburrow/modbus" 和 "github.com/tarm/serial" 是两个开源的 Go 语言库,可以用来实现从串口读取 Modbus 寄存器的功能。
"github.com/goburrow/modbus" 是一个用于 Go 语言的 Modbus 协议库,可以提供对 Modbus RTU 和 Modbus TCP 协议的支持。
"github.com/tarm/serial" 是一个用于 Go 语言的串口库,可以提供对串口的读写操作。
你可以使用这两个库来实现从串口读取 Modbus 寄存器的功能,具体方法如下:
1. 使用 "github.com/tarm/serial" 库打开串口,并设置串口参数,如波特率、数据位、停止位等。
2. 使用 "github.com/goburrow/modbus" 库创建 Modbus 客户端,并指定使用 Modbus RTU 协议。
3. 使用 "github.com/goburrow/modbus" 库的 ReadHoldingRegisters() 方法从 Modbus 服务器读取寄存器数据。
具体细节可以参考两个库的文档和示例代码。
阅读全文