Skip to content
This repository has been archived by the owner on Dec 7, 2024. It is now read-only.

Commit

Permalink
Merge pull request #4 from wolfgang42/patch-1
Browse files Browse the repository at this point in the history
Java Limit Switch: Fix reverse limit status
  • Loading branch information
willtoth authored Mar 9, 2019
2 parents 5902336 + d7f8a6f commit b56d301
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Java/Limit Switch/src/main/java/frc/robot/Robot.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,6 @@ public void teleopPeriodic() {
* have a switch connected. get() will return false when the switch is released.
*/
SmartDashboard.putBoolean("Forward Limit Switch", m_forwardLimit.get());
SmartDashboard.putBoolean("Reverse Limit Switch", m_forwardLimit.get());
SmartDashboard.putBoolean("Reverse Limit Switch", m_reverseLimit.get());
}
}

0 comments on commit b56d301

Please sign in to comment.