mirror of
https://github.com/Team4388/RiseOfRidgebotics2020.git
synced 2026-06-09 00:38:00 -06:00
Fixed CAN IDs on the falcons, refixed the negative
This commit is contained in:
@@ -342,7 +342,7 @@ public class Drive extends SubsystemBase {
|
|||||||
* using the Differential Drive class to manage the two inputs
|
* using the Differential Drive class to manage the two inputs
|
||||||
*/
|
*/
|
||||||
public void driveWithInput(double move, double steer) {
|
public void driveWithInput(double move, double steer) {
|
||||||
m_driveTrain.arcadeDrive(move, steer);
|
m_driveTrain.arcadeDrive(-move, steer);
|
||||||
m_leftBackMotor.follow(m_leftFrontMotor);
|
m_leftBackMotor.follow(m_leftFrontMotor);
|
||||||
m_rightBackMotor.follow(m_rightFrontMotor);
|
m_rightBackMotor.follow(m_rightFrontMotor);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user