|
Re: Joystick getThrottle() returns 0
It's the Logitech Attack 3.
Not sure what you mean by "the throttle show up on any of the 6 axes"...
In software I'm using the wpilibj Joystick class. Below are the default axes:
static final byte kDefaultXAxis = 1;
static final byte kDefaultYAxis = 2;
static final byte kDefaultZAxis = 3;
static final byte kDefaultTwistAxis = 3;
static final byte kDefaultThrottleAxis = 4;
static final int kDefaultTriggerButton = 1;
static final int kDefaultTopButton = 2;
Is the throttle a different axis on this controller?
|