From cfb0f17a9a4577d9d6d38ee71b133711fc1ababc Mon Sep 17 00:00:00 2001 From: Oleg Kalachev Date: Tue, 15 Jul 2025 01:29:25 +0300 Subject: [PATCH] Minor cli change --- flix/cli.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flix/cli.ino b/flix/cli.ino index 10ebc27..91ff9ef 100644 --- a/flix/cli.ino +++ b/flix/cli.ino @@ -55,7 +55,7 @@ void doCommand(const String& command) { controlRoll, controlPitch, controlYaw, controlThrottle, controlArmed, controlMode); Serial.printf("mode: %s\n", getModeName()); } else if (command == "mot") { - Serial.printf("MOTOR front-right %f front-left %f rear-right %f rear-left %f\n", + Serial.printf("front-right %f front-left %f rear-right %f rear-left %f\n", motors[MOTOR_FRONT_RIGHT], motors[MOTOR_FRONT_LEFT], motors[MOTOR_REAR_RIGHT], motors[MOTOR_REAR_LEFT]); } else if (command == "log") { dumpLog();