Fixed CAN IDs on the falcons, refixed the negative

This commit is contained in:
Aarav Shah
2021-01-29 15:40:59 -07:00
parent 1c5bdf6e2b
commit 52433156e8
@@ -342,7 +342,7 @@ public class Drive extends SubsystemBase {
* using the Differential Drive class to manage the two inputs
*/
public void driveWithInput(double move, double steer) {
m_driveTrain.arcadeDrive(move, steer);
m_driveTrain.arcadeDrive(-move, steer);
m_leftBackMotor.follow(m_leftFrontMotor);
m_rightBackMotor.follow(m_rightFrontMotor);
}