View Single Post
  #3   Spotlight this post!  
Unread 07-02-2013, 18:32
Arhowk's Avatar
Arhowk Arhowk is offline
FiM CSA
AKA: Jake Niman
FRC #1684 (The Chimeras) (5460 Mentor)
 
Join Date: Jan 2013
Rookie Year: 2013
Location: Lapeer
Posts: 543
Arhowk is a splendid one to beholdArhowk is a splendid one to beholdArhowk is a splendid one to beholdArhowk is a splendid one to beholdArhowk is a splendid one to beholdArhowk is a splendid one to behold
Re: Help programming joystick buttons

Quote:
Originally Posted by wickzam View Post
We tried to use getRawButton in our code but every time we use it there is a problem.
if you could show us an example of a code using getRawButton that would be very helpful.
i dont get it. whats your problem

Joystick j = new Joystick(1);
JoystickButton a = new JoystickButton(j,1);
a.whileHeld(new YourCommand());

in command based or

Joystick j = new Joystick(1)
if(j.getRawButton(1)){
do stuff
}

in iterative. both will run when A is pressed
Reply With Quote