You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
}
Stringthing = "NO";
@OverridepublicvoidteleopPeriodic() {
//TODO: NEED TO TUNE SETPOINTS FOR CUBE CONE AND OPEN GRIPPER USE LEFT PADDLE TO CLOSE AND LEFT BUMPER TO OPEN FOR NOWif (operatorInput.holdGripper())
{
thing = "gripper-hold";
armControl.gripperHold();
}
elseif(operatorInput.intakeGripper())
{
if(operatorInput.isCube())
{
thing = "intake-gripper-cube";
armControl.intakeGripperCube();
}
else
{
thing = "intake-gripper-cone";
armControl.intakeGripperCone();
}
}
elseif (operatorInput.openGripper())
{
thing = "opne-gripper";
armControl.openGripper();
}
else
{
thing = "stop-gripper";
armControl.stopGripper();
}
if (operatorInput.isStoragePressed()) {
shouldDoNext = ArmFSM.STORE;
return;
The text was updated successfully, but these errors were encountered:
https://api.github.com/BitBucketsFRC4183/FRC2023-Charged-Up/blob/641ba29a818fb2e85b474192b3eeb8a9eddb43a3/src/main/java/org/bitbuckets/arm/ArmSubsystem.java#L92
The text was updated successfully, but these errors were encountered: