rts-sim-module/component/iscs_fg.go

16 lines
330 B
Go
Raw Normal View History

2023-12-18 10:22:36 +08:00
package component
// FloodGate 防淹门
type FloodGate struct {
State FgState
}
// FgState 防淹门状态
type FgState = uint8
const (
FgOpen FgState = iota //开启(电机正常、锁锁定)
FgPreparingClose //准备关闭(电机正常、锁拔出)
FgClosed //已关闭
)