Robin Mueller
37a35c4446
Some checks failed
EIVE/-/pipeline/head There was a failure building this commit
15 lines
232 B
Python
15 lines
232 B
Python
import enum
|
|
|
|
|
|
class CtrlSetId(enum.IntEnum):
|
|
PRIMARY_SENSORS = 0
|
|
DEVICE_SENSORS = 1
|
|
SUS_TEMP_SENSORS = 2
|
|
HEATER_INFO = 4
|
|
TCS_CTRL_INFO = 5
|
|
|
|
|
|
class TcsSubmode(enum.IntEnum):
|
|
DEFAULT = 0
|
|
NO_HEATER_CTRL = 1
|