Table of Contents:
from enum import IntEnum [docs]class ProgramMode(IntEnum): STOPPED = -1 PAUSED = 0 RUNNING = 1