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.
|
|
|
|
package handler
|
|
|
|
|
|
|
|
|
|
type DataMgr struct {
|
|
|
|
|
Coils []byte // 线圈(DO:数字输出)
|
|
|
|
|
DiscreteInputs []byte // 离散输入(DI:数字输入)
|
|
|
|
|
HoldingRegisters []uint16 // 保持寄存器(AO:模拟输出)
|
|
|
|
|
InputRegisters []uint16 // 输入寄存器(AI:模拟输入)
|
|
|
|
|
}
|