Fix Arduino 'c' command

This commit is contained in:
Unknown
2019-01-14 20:04:31 -05:00
parent 00c21bc510
commit 9b669ad623
+1 -1
View File
@@ -39,7 +39,7 @@ void ODriveArduino::SetVelocity(int motor_number, float velocity, float current_
}
void ODriveArduino::SetCurrent(int motor_number, float current) {
serial_ << "c" << motor_number << " " << current << "\n";
serial_ << "c " << motor_number << " " << current << "\n";
}
float ODriveArduino::readFloat() {