Skip to content

Commit

Permalink
Update firmware.ino
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Nikolaev committed Nov 3, 2023
1 parent a2abe13 commit 3f6607e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/software/firmware/firmware.ino
Original file line number Diff line number Diff line change
Expand Up @@ -575,8 +575,8 @@ void MONITOR(bool SETUPMODE){
Serial.print("ShaftSpeed:"); Serial.print(Shockpanel.GetData(5)); Serial.print(",");
Serial.print("Gear:"); Serial.print(Gearbox.GetData(5)); Serial.print(",");
Serial.print("MotorR:"); Serial.print(Gearbox.GetSpeed(0,Motion.GetMotor(0))); Serial.print(",");
Serial.print("MotorL:"); Serial.print(Gearbox.GetSpeed(0,Motion.GetMotor(0))); Serial.print(",");
Serial.print("MotorB:"); Serial.print(Gearbox.GetSpeed(0,Motion.GetMotor(0))); Serial.println(",");
Serial.print("MotorL:"); Serial.print(Gearbox.GetSpeed(0,Motion.GetMotor(1))); Serial.print(",");
Serial.print("MotorB:"); Serial.print(Gearbox.GetSpeed(0,Motion.GetMotor(2))); Serial.println(",");
}
#else
if (millis() - MonitorTimer0 >= MonitorDelay){
Expand Down

0 comments on commit 3f6607e

Please sign in to comment.