Skip to content

Commit

Permalink
Swapped state of ON/OFF
Browse files Browse the repository at this point in the history
  • Loading branch information
parfa30 committed Aug 21, 2024
1 parent 3a2c623 commit dcc83f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions doc/news/DM-45766.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Swapped the ON/OFF enumeration for the LEDProjector. They are currently switched
4 changes: 2 additions & 2 deletions python/lsst/ts/xml/enums/LEDProjector.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ class LEDBasicState(enum.IntEnum):
"""

UNKNOWN = 0
OFF = 1
ON = 2
OFF = 2
ON = 1
ERROR = 3
LABJACK_CONNECTED = 4
LABJACK_DISCONNECTED = 5

0 comments on commit dcc83f8

Please sign in to comment.