View Single Post
  #5   Spotlight this post!  
Unread 19-02-2014, 09:03
gluxon's Avatar
gluxon gluxon is offline
\n
AKA: Brandon Cheng
FRC #0178 (The 2nd Law Enforcers)
Team Role: Leadership
 
Join Date: Apr 2012
Rookie Year: 2011
Location: Connecticut
Posts: 65
gluxon has a spectacular aura aboutgluxon has a spectacular aura aboutgluxon has a spectacular aura about
Re: Data Range on Joystick.getRawAxis

Quote:
Originally Posted by Signet View Post
The method summary of getRawAxis() in Joystick links to this source code:
Code:
       double result;
       if (value < 0) {
           result = ((double) value) / 128.0;
       } else {
           result = ((double) value) / 127.0;
       }
}
Interesting. I wonder if positive joystick values are expanded (more sensitive) than negative ones looking at this code.