rts-sim-module/cgrepo/model/relay.go

12 lines
228 B
Go
Raw Normal View History

2023-12-27 18:09:20 +08:00
package model
// 继电器位置
type RelayPosition int
const (
// 继电器位置-后(表示落下/反位)
RelayPosition_H RelayPosition = 0
// 继电器位置-前(表示吸起/定位)
RelayPosition_Q RelayPosition = 1
)