View Single Post
  #1   Spotlight this post!  
Unread 17-02-2010, 12:37
TPNigl TPNigl is offline
Registered User
FRC #0069 (Team HYPER)
Team Role: Programmer
 
Join Date: Jan 2009
Rookie Year: 2007
Location: Quincy, MA
Posts: 94
TPNigl is an unknown quantity at this point
Victors not working with other code?

Ok, so we've got a lot of stuff working. However, we also have a problem. We're using java, and we have the robot drive defined and working fine. However, when we try to introduce code that simply controls the victor to activate the motor, not only do they not work, but the robot drive no longer works. Here's our declaration:

Code:
        m_robotDrive = new RobotDrive(1, 3, 2, 4);

        vctrCtrWheelLift = new Victor (5);
        vctrKickerMotorFront = new Victor (6);
        vctrKickerMotorRear = new Victor (7);
        vctrArmMotor1 = new Victor (8);
        vctrArmMotor2 = new Victor (9);
And here is the code we're trying to get to work with the motors being solely by the victors:

Code:
if (jStickDriveLeft.getRawButton(1) && !prxCtrWheelUp.get())
            vctrCtrWheelLift.set(1.0);
        else
            vctrCtrWheelLift.set(0.0);

        if (!jStickDriveLeft.getRawButton(1) && !prxCtrWheelDown.get())
            vctrCtrWheelLift.set(1.0);
        else
            vctrCtrWheelLift.set(0.0);
Any suggestions?
__________________


2011 Pit Crew:
2011 CT Xerox Creativity Award

HYPER Alumni