Skip to content

Commit

Permalink
Add focusing and troubleshooting fields to OverwatcherStatusModel
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Nov 18, 2024
1 parent 4a6d987 commit 07003f3
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/lvmapi/routers/overwatcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,16 @@ class OverwatcherStatusModel(BaseModel):
Field(description="Is the overwatcher taking cals?"),
] = False

focusing: Annotated[
bool,
Field(description="Is the overwatcher focusing the telescopes?"),
] = False

troubleshooting: Annotated[
bool,
Field(description="Is the overwatcher in troubleshooting mode?"),
] = False

night: Annotated[
bool | None,
Field(description="Is currently night (after twilight)?"),
Expand Down

0 comments on commit 07003f3

Please sign in to comment.