more print commands for PCDU

This commit is contained in:
2021-09-16 14:51:24 +02:00
parent 9d1cae0809
commit 6da94c73d0
3 changed files with 46 additions and 11 deletions

View File

@ -19,7 +19,17 @@ class GomspaceDeviceActionIds(enum.IntEnum):
PARAM_SET = 255
WDT_RESET = 9
REQUEST_HK_TABLE = 16
PRINT_SWITCH_STATE = 17
PRINT_ALL = 32
PRINT_SWITCH_STATES = 33
PRINT_CURRENTS = 34
PRINT_VOLTAGES = 35
class PduOpCodes(enum.Enum):
PRINT_ALL = "32"
PRINT_SWITCH_STATES = "33"
PRINT_CURRENTS = "34"
PRINT_VOLTAGES = "35"
class TableIds: