From af6a8d2a06da0d50997502e078fb3fc7a189af76 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 5 Jun 2023 17:47:01 -0500 Subject: [PATCH] fix --- components/ratgdo/ratgdo.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/ratgdo/ratgdo.cpp b/components/ratgdo/ratgdo.cpp index 30953a5..63456eb 100644 --- a/components/ratgdo/ratgdo.cpp +++ b/components/ratgdo/ratgdo.cpp @@ -139,10 +139,10 @@ namespace ratgdo { void IRAM_ATTR HOT RATGDOStore::isrObstruction(RATGDOStore *arg) { if (arg->input_obst.digital_read()) { - ESP_LOGD(TAG, "isrObstruction HIGH") + ESP_LOGD(TAG, "isrObstruction HIGH"); arg->lastObstructionHigh = millis(); } else { - ESP_LOGD(TAG, "isrObstruction LOW") + ESP_LOGD(TAG, "isrObstruction LOW"); arg->obstructionLowCount++; } }