getRawButton() problems
Hi everyone, our team is programming the robot with Java, but we are have a problem getting the boolean value of getRawButton() method. Does someone had a similar problem or knows how to fix it?
//Example
public void teleopPeriodic() {
if(stick.getRawButton(1)==true){
//Some Code
}
}
|