10 lines
169 B
Python
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()
|