diff --git a/doc/news/interface_changes/DM-45766.ledprojector.rst b/doc/news/interface_changes/DM-45766.ledprojector.rst new file mode 100644 index 000000000..17c89c242 --- /dev/null +++ b/doc/news/interface_changes/DM-45766.ledprojector.rst @@ -0,0 +1 @@ +Swapped the ON/OFF enumeration for the LEDProjector. They are currently switched diff --git a/python/lsst/ts/xml/enums/LEDProjector.py b/python/lsst/ts/xml/enums/LEDProjector.py index bfff56e07..26444c354 100644 --- a/python/lsst/ts/xml/enums/LEDProjector.py +++ b/python/lsst/ts/xml/enums/LEDProjector.py @@ -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