Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NEED TO TUNE SETPOINTS FOR CUBE CONE AND OPEN GRIPPER USE LEFT PADDLE TO CLOSE A... #234

Open
github-actions bot opened this issue Oct 16, 2023 · 0 comments
Labels

Comments

@github-actions
Copy link

https://api.github.com/BitBucketsFRC4183/FRC2023-Charged-Up/blob/641ba29a818fb2e85b474192b3eeb8a9eddb43a3/src/main/java/org/bitbuckets/arm/ArmSubsystem.java#L92

    }



    String thing = "NO";
    @Override
    public void teleopPeriodic() {




        //TODO: NEED TO TUNE SETPOINTS FOR CUBE CONE AND OPEN GRIPPER USE LEFT PADDLE TO CLOSE AND LEFT BUMPER TO OPEN FOR NOW
        if (operatorInput.holdGripper())
        {
            thing = "gripper-hold";
            armControl.gripperHold();
        }
        else if(operatorInput.intakeGripper())
        {
            if(operatorInput.isCube())
            {
                thing = "intake-gripper-cube";
                armControl.intakeGripperCube();
            }
            else
            {
                thing = "intake-gripper-cone";
                armControl.intakeGripperCone();
            }
        }
        else if (operatorInput.openGripper())
        {
            thing = "opne-gripper";
            armControl.openGripper();
        }

        else
        {
            thing = "stop-gripper";
            armControl.stopGripper();
        }


        if (operatorInput.isStoragePressed()) {
            shouldDoNext = ArmFSM.STORE;
            return;
@github-actions github-actions bot added the todo label Oct 16, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

0 participants