View Full Version : Can't get info from Joysticks
AutoBotAM
23-01-2013, 19:09
I have a rather strange problem similar to this: http://www.chiefdelphi.com/forums/showthread.php?t=103097
So far I have tried getX() and getRawAxis(), and they all return 0, even when I'm using the joystick. I have tried two gamepads and one Joystick, which has worked previously, but currently am unable to get any input in the code. I have been updating all of our software, and I imaged our new cRIO to the latest one. I have been testing this alongside some SmartDashboard code (which seems to work fine). The strange thing is that the driver station seems to identify my controllers just fine, and it flashes blue whenever I press a button. Maybe its something I need to configure in driver station, or the Netbeans project? Has anyone else been having trouble getting input from the joysticks? I will try a few more things on our next robotics meeting, but I'd appreciate any thoughts you guys have on this. Thanks!
AutoBotAM
24-01-2013, 15:42
Here's some extra info about my problem. Here's the output from driver station: WARNING <Code> 44008 occurred at FRC_NetworkCommunications <radioLostEvents> 0.000 <radioSeenEvents>
WARNING <Code> 44007 occurred at FRC_NetworkCommunications <secondsSinceReboot> 3.435
WARNING <Code> 44008 occurred at FRC_NetworkCommunications <radioLostEvents> 290.037 <radioSeenEvents>
WARNING <Code> 44007 occurred at FRC_NetworkCommunications <secondsSinceReboot> 292.570
Modified Network Configuration: Set
I/O unit not detected or not installed correctly.
Here's all of the code I'm using for this test:
package edu.wpi.first.wpilibj.robottest1;
import edu.wpi.first.wpilibj.Joystick;
import edu.wpi.first.wpilibj.SimpleRobot;
public class RobotTest1 extends SimpleRobot
{
public void autonomous()
{
Joystick joy = new Joystick(1);
while(isAutonomous() && !isDisabled())
{
System.out.println(joy.getX());
}
}
}
The output constantly says 0.0, whilst I'm frantically moving the joystick around... Yet this was all working fine last year. Once again, the driver station appears to identify my joystick on the setup page, as it flashes blue when I press the buttons. Windows game controller properties sees the axis movements fine.
Here's the differences I identify from last year:
- Netbeans FRC plugin updates
- Driver station update
- SmartDashboard update
- USB-splitter plugged in, but I have tried both the splitter and a direct USB connection
- New, imaged cRIO 2013
- Installed FRC Utilities and Labview package 2013
One thing I just noticed is that I believe I haven't installed an even newer driver station update from 01-05-2013. (But that may have been included in the Labview DVD install... But I'll download it anyway).
I will post back later when I get more info. Please share your thoughts, thanks.
EDIT: Ahh wait... could it be because I'm doing this in autonomous mode? Are the controller connections blocked in autonomous? I'm going to feel really stupid if that's all it was xD
Mark McLeod
24-01-2013, 15:59
Driver controls are indeed blocked during autonomous mode.
They retain their last values before the mode changes.
AutoBotAM
24-01-2013, 16:59
Thanks, I'm glad that its as simple as that.
For anyone else reading this, do unit testing in teleop mode! Autonomous blocks joystick controls!
We are having the same problem, except that we are in teleop mode right now. Any help?
AutoBotAM
12-02-2013, 19:34
We are having the same problem, except that we are in teleop mode right now. Any help?
Make sure Driver station can see when you press the buttons on the joysticks, and that they are green instead of grey. Make sure you can see the controller axes/buttons in Windows. Try connecting to the cRIO via ethernet and deploy the code and see what happens. Can you post your code, and anything the Driver Station log says?
vBulletin® v3.6.4, Copyright ©2000-2017, Jelsoft Enterprises Ltd.