Skip to content
Snippets Groups Projects
Commit dbaf6af2 authored by Thomas Gubler's avatar Thomas Gubler
Browse files

scale dummy mixer output

parent 60b02477
No related branches found
No related tags found
No related merge requests found
......@@ -169,7 +169,7 @@ void MultirotorMixer::mix() {
// publish message
mav_msgs::MotorSpeed rotor_vel_msg;
for (int i = 0; i < _rotor_count; i++) {
rotor_vel_msg.motor_speed.push_back(outputs.control[i]);
rotor_vel_msg.motor_speed.push_back(outputs.control[i] * 1000);
}
_pub.publish(rotor_vel_msg);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment