Optimal Climber Controls/Keymapping

image

This is what our team might use for the Minnesota State Tournament

30 Likes

Alright, imma need to know how you did this. I want someone to make a screen display with the actual game timed to climb steps

5 Likes

New meta???

5 Likes

made a new controller like this “public static GenericHID ddrPad = new GenerixHID(1);” then used POV controls to control the climber’s motor and solenoids like this:

if (Robot.ddrPad.getPOV() == 0 ){
climberTalon.set(ControlMode.PercentOutput, 1);
}
else if (Robot.ddrPad.getPOV() == 180){
climberTalon.set(ControlMode.PercentOutput, -1);
}

if (Robot.ddrPad.getPOV() == 90 ){
openSolenoid();
} else if (Robot.ddrPad.getPOV() == 270 ){
closeSolenoid();

    }

And what song can you dance to that gives you the perfect timing on the climb?

(bonus points if it is the Macarena or Final Countdown)

By the way, for teleop, do this:

6 Likes

back when I was a teenager, I was totally complicit in faking this…

2 Likes

Oh that makes sense. Not sure why I thought it was some third party library lol

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.