mirror of
https://github.com/Team4388/RiseOfRidgebotics2020.git
synced 2026-06-09 08:48:01 -06:00
GotoCoordinate Works, Trying to Implement TurnAngle
This commit is contained in:
@@ -727,8 +727,8 @@ public class Drive extends SubsystemBase {
|
||||
//SmartDashboard.putNumber("Left Back Output", m_leftBackMotor.get());
|
||||
//SmartDashboard.putNumber("Right Back Output", m_rightBackMotor.get());
|
||||
|
||||
double leftRPM = m_leftFrontMotor.getSensorCollection().getIntegratedSensorVelocity();
|
||||
double rightRPM = m_rightFrontMotor.getSensorCollection().getIntegratedSensorVelocity();
|
||||
double leftRPM = ticksToInches(m_leftFrontMotor.getSensorCollection().getIntegratedSensorVelocity());
|
||||
double rightRPM = ticksToInches(m_rightFrontMotor.getSensorCollection().getIntegratedSensorVelocity());
|
||||
|
||||
SmartDashboard.putNumber("Left Motor RPM", leftRPM);
|
||||
SmartDashboard.putNumber("Right Motor RPM", rightRPM);
|
||||
|
||||
Reference in New Issue
Block a user