Skip to content
This repository was archived by the owner on Sep 14, 2019. It is now read-only.

Commit 76af151

Browse files
committed
changed getGyro to getGyroAngle per request
1 parent 532bc10 commit 76af151

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Robot2018/src/org/usfirst/frc/team199/Robot2018/subsystems/Drivetrain.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ public double getDtRight() {
196196
*
197197
* @return The angle that the gyro reads
198198
*/
199-
public double getGyro() {
199+
public double getGyroAngle() {
200200
return dtGyro.getAngle();
201201
}
202202

Robot2018/src/org/usfirst/frc/team199/Robot2018/subsystems/DrivetrainInterface.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public interface DrivetrainInterface {
9696
*
9797
* @return The angle that the gyro reads
9898
*/
99-
public double getGyro();
99+
public double getGyroAngle();
100100

101101
/**
102102
* Resets the gyro to 0

0 commit comments

Comments
 (0)