From 4fbc95b238cd9469effbbfcf5231836b66f18bff Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 9 Jun 2023 18:20:37 -0500 Subject: [PATCH] button --- components/ratgdo/ratgdo_state.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/ratgdo/ratgdo_state.cpp b/components/ratgdo/ratgdo_state.cpp index 6011d2a..4438508 100644 --- a/components/ratgdo/ratgdo_state.cpp +++ b/components/ratgdo/ratgdo_state.cpp @@ -54,10 +54,10 @@ namespace ratgdo { const char* motion_state_to_string(MotionState state) { switch (state) { - case MOTION_STATE_DETECTED: - return "DETECTED"; case MOTION_STATE_CLEAR: return "CLEAR"; + case MOTION_STATE_DETECTED: + return "DETECTED"; case MOTION_STATE_UNKNOWN: default: return "UNKNOWN";