Add 'STOPPED (manual)' message to serial output

This commit is contained in:
devdesk
2026-02-05 21:06:00 +02:00
parent fcfee5fa66
commit dd274202bb

View File

@@ -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() {