From 2e7f53835b3892880b39f0d6c30848a590d8988d Mon Sep 17 00:00:00 2001 From: Marius Muja Date: Sun, 25 Jun 2023 16:44:24 -0700 Subject: [PATCH] Fix --- components/ratgdo/ratgdo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ratgdo/ratgdo.cpp b/components/ratgdo/ratgdo.cpp index cf3fdb4..d357411 100644 --- a/components/ratgdo/ratgdo.cpp +++ b/components/ratgdo/ratgdo.cpp @@ -697,7 +697,7 @@ namespace ratgdo { } auto operation_time = duration * 1000 * delta; - ESP_LOGD(TAG, "Moving to position %.2f in %.1fs", position, operation_time / 1000.0) + ESP_LOGD(TAG, "Moving to position %.2f in %.1fs", position, operation_time / 1000.0); this->movingToPosition = true; set_timeout("move_to_position", operation_time, [=] { doorCommand(data::DOOR_STOP);