Browse Source

Changed driver to control motor duty cycle.

sbg
James Goppert 11 years ago
parent
commit
c4a1a338ff
  1. 4
      src/drivers/roboclaw/RoboClaw.cpp

4
src/drivers/roboclaw/RoboClaw.cpp

@ -254,8 +254,8 @@ int RoboClaw::update()
// if new data, send to motors // if new data, send to motors
if (_actuators.updated()) { if (_actuators.updated()) {
_actuators.update(); _actuators.update();
setMotorSpeed(MOTOR_1,_actuators.control[CH_VOLTAGE_LEFT]); setMotorDutyCycle(MOTOR_1,_actuators.control[CH_VOLTAGE_LEFT]);
setMotorSpeed(MOTOR_2,_actuators.control[CH_VOLTAGE_RIGHT]); setMotorDutyCycle(MOTOR_2,_actuators.control[CH_VOLTAGE_RIGHT]);
} }
return 0; return 0;
} }

Loading…
Cancel
Save