|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
|
|
Thread Tools | Rate Thread | Display Modes |
|
|
|
#1
|
|||
|
|||
|
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);
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);
|
|
#2
|
|||||
|
|||||
|
Re: Victors not working with other code?
prxCtrWheelUp has no effect in this code fragment. Do you really want vctrCtrWheelLift to run full speed forward only when the left joystick trigger is pressed and prxCtrWheelDown is false, and to stop otherwise?
|
|
#3
|
|||
|
|||
|
Re: Victors not working with other code?
Yea, we do. But we got it to work and it's fine. Thanks anyway!
|
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| code not working | killerofall | NI LabVIEW | 5 | 18-02-2010 06:19 |
| Solenoid code not working | ssmith2 | NI LabVIEW | 6 | 03-02-2010 10:11 |
| C++ Sample Code not working... | hm29168 | CAN | 5 | 27-01-2010 20:59 |
| Incrementation Code not working | benhulett | Programming | 6 | 12-02-2007 17:39 |
| Camera code not working.... | DemonYawgmoth | Programming | 5 | 11-02-2006 09:21 |