Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

M1 commands #710

Merged
merged 3 commits into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions modules/model/src/main/scala/navigate/model/NavigateCommand.scala
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,13 @@ object NavigateCommand {
case object OiwfsStopObserve extends NavigateCommand
case object AcObserve extends NavigateCommand
case object AcStopObserve extends NavigateCommand
case object M1Park extends NavigateCommand
case object M1Unpark extends NavigateCommand
case object M1OpenLoopOff extends NavigateCommand
case object M1OpenLoopOn extends NavigateCommand
case object M1ZeroFigure extends NavigateCommand
case object M1LoadAoFigure extends NavigateCommand
case object M1LoadNonAoFigure extends NavigateCommand

given Eq[NavigateCommand] = Eq.fromUniversalEquals

Expand Down Expand Up @@ -116,6 +123,13 @@ object NavigateCommand {
case OiwfsStopObserve => "Oiwfs Stop Exposures"
case AcObserve => "Acquisition Camera Start Exposures"
case AcStopObserve => "Acquisition Camera Stop Exposures"
case M1Park => "M1 Park"
case M1Unpark => "M1 Unpark"
case M1OpenLoopOff => "M1 Open Loop Off"
case M1OpenLoopOn => "M1 Open Loop On"
case M1ZeroFigure => "M1 Zero Figure"
case M1LoadAoFigure => "M1 Load Ao Figure"
case M1LoadNonAoFigure => "M1 Load Non Ao Figure"
}
}

Expand Down
Loading