sceptic-biomem/ScEpTIC/emulator/energy/power_state_event.py
2026-07-10 10:38:57 +02:00

10 lines
169 B
Python

from enum import Enum, auto
class PowerStateEvent(Enum):
"""
Enum for power state events
"""
MCU_OFF = auto()
ADC_OFF = auto()
NVM_OFF = auto()