|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
|
|
Thread Tools | Rate Thread | Display Modes |
|
|
|
#1
|
|||
|
|||
|
Can't get info from Joysticks
I have a rather strange problem similar to this: http://www.chiefdelphi.com/forums/sh...d.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! |
|
#2
|
|||
|
|||
|
Re: Can't get info from Joysticks
Here's some extra info about my problem. Here's the output from driver station:
Code:
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. Code:
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());
}
}
}
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 Last edited by AutoBotAM : 24-01-2013 at 15:46. |
|
#3
|
|||||
|
|||||
|
Re: Can't get info from Joysticks
Driver controls are indeed blocked during autonomous mode.
They retain their last values before the mode changes. |
|
#4
|
|||
|
|||
|
Re: Can't get info from Joysticks
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! |
|
#5
|
|||
|
|||
|
Re: Can't get info from Joysticks
We are having the same problem, except that we are in teleop mode right now. Any help?
|
|
#6
|
|||
|
|||
|
Re: Can't get info from Joysticks
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?
|
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|