View Single Post
  #12   Spotlight this post!  
Unread 09-01-2015, 00:21
nickmcski nickmcski is offline
Registered User
AKA: Nicholas McCurry
FRC #1482 (Grandin Ghosts)
Team Role: Alumni
 
Join Date: Nov 2012
Rookie Year: 2012
Location: Canada
Posts: 112
nickmcski has a spectacular aura aboutnickmcski has a spectacular aura aboutnickmcski has a spectacular aura about
Re: getRawButton() problems

Quote:
Originally Posted by thetonio96 View Post
public void teleopPeriodic() {
if(stick.getRawButton(1)==true){
//Some Code
}
}
Just remember that this should return a boolean, so you don't need the == true

just try, it simplifies the code and leaves less room for error.

Code:
public void teleopPeriodic() {
        if(stick.getRawButton(1)){
                //Some Code
        }
}
Reply With Quote