From dd274202bbee187fe99eb378de5657fbb19e43d5 Mon Sep 17 00:00:00 2001 From: devdesk Date: Thu, 5 Feb 2026 21:06:00 +0200 Subject: [PATCH] Add 'STOPPED (manual)' message to serial output --- src/motor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/motor.cpp b/src/motor.cpp index d6fc3a9..b37bfd2 100644 --- a/src/motor.cpp +++ b/src/motor.cpp @@ -58,6 +58,7 @@ void MotorController::stop() { _direction = 0; ledcWrite(PWM_CHANNEL_R, 0); ledcWrite(PWM_CHANNEL_L, 0); + Serial.println("Motor: STOPPED (manual)"); } void MotorController::update() {