command correct sequence IDs now

This commit is contained in:
Robin Müller 2022-10-11 15:18:47 +02:00
parent fd5c234bc8
commit 3d2dee8c9c
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC
1 changed files with 4 additions and 5 deletions

View File

@ -26,11 +26,10 @@ class OpCodes(str, enum.Enum):
class AcsModes(enum.IntEnum):
OFF = 0
SAFE = 1
DETUMBLE = 2
IDLE = 3
TARGET_PT = 4
REPORT_ALL_MODES = 5
SAFE = 1 << 24
DETUMBLE = 2 << 24
IDLE = 3 << 24
TARGET_PT = 4 << 24
class Info(str, enum.Enum):