| 12345678910111213 |
- #pragma once
- #include "../config/app/config.h"
- typedef uint8_t AutomationMethod;
- enum AutomationMethods {
- AutomationMethodNone = 0b00,
- AutomationMethodBadUsb = 0b01,
- #ifdef TOTP_BADBT_AUTOMATION_ENABLED
- AutomationMethodBadBt = 0b10,
- #endif
- };
|