You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ntool-biz/nmodbus/handler/data.go

9 lines
305 B
Go

1 year ago
package handler
type DataMgr struct {
Coils []byte // 线圈DO数字输出
DiscreteInputs []byte // 离散输入DI数字输入
HoldingRegisters []uint16 // 保持寄存器AO模拟输出
InputRegisters []uint16 // 输入寄存器AI模拟输入
}