mirror of
https://github.com/Team4388/RiseOfRidgebotics2020.git
synced 2026-06-09 00:38:00 -06:00
Requested reviews
This commit is contained in:
@@ -55,7 +55,7 @@ public class Intake extends SubsystemBase {
|
||||
* Runs intake motor
|
||||
* @param input the percent output to run motor at
|
||||
*/
|
||||
public void runIntake(final double input) {
|
||||
public void runIntake(double input) {
|
||||
m_intakeMotor.set(input);
|
||||
}
|
||||
|
||||
@@ -63,7 +63,7 @@ public class Intake extends SubsystemBase {
|
||||
* Runs extender motor
|
||||
* @param input the percent output to run motor at
|
||||
*/
|
||||
public void runExtender(final double input) {
|
||||
public void runExtender() {
|
||||
if (m_extenderForwardLimit.get()) {
|
||||
isExtended = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user