jl-iot/service/api.go

21 lines
416 B
Go
Raw Normal View History

2023-12-08 18:08:15 +08:00
package service
// IOT驱采映射服务
type IotQcMappingService interface {
// 停止
2023-12-08 18:08:15 +08:00
Stop() error
// 获取驱动字节列表
GetQdBytes() []byte
// 获取驱动位列表
GetQdBits() []bool
// 获取采集字节列表
GetCjBytes() []byte
// 获取采集位列表
GetCjBits() []bool
// 写驱动字节列表
WriteQdBytes(bytes []byte) error
// 写采集位列表
WriteCjBytes(bytes []byte) error
2023-12-08 18:08:15 +08:00
}