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