|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
|
|
Thread Tools | Rate Thread | Display Modes |
|
|
|
#1
|
|||
|
|||
|
Re: Solenoid Breakout
What is with the 2,3,11?
I've always just used (1),(2),(3), etc and it has worked fine. And you cant JUST say rightStick(1). It needs to be declared as a joystick somewhere. Ex: Code:
#include "WPILib.h"
class Aweseome1610Robot: public SimpleRobot
{
RobotDrive myRobot; // robot drive system
Joystick leftStick;
Joystick rightStick;
Victor victorOfDoom;
public:
Aweseome1610Robot(void)
: myRobot(1, 2) // left side, right side
, leftStick(1)
, rightStick(2)
, victorOfDoom(5) //Victor of Doom is on PWM slot 5
{
GetWatchdog().SetEnabled(false);
}
void RobotMain(void)
{
while (true) //Bad practice, dont do that. :P
{
if(rightStick.GetRawButton(1) //Trigger
{
victorOfDoom.Set(leftStick.GetThrottle());
/*Drive the Victor based on the leftSticks throttle, because the Set function accepts a Float value, and GetThrottle returns a float. */
}
}
}
};
START_ROBOT_CLASS(Aweseome1610Robot);
|
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Solenoid Breakout Voltage for Pneumatics Question | Team1908 | Pneumatics | 10 | 27-03-2010 00:27 |
| Analog Breakout | l.li | Electrical | 5 | 12-02-2010 15:56 |
| Troubleshooting solenoid breakout | DuaneB | Pneumatics | 6 | 02-02-2010 10:40 |
| Solenoid not firing off Solenoid Breakout | spooncwru | Pneumatics | 2 | 30-01-2010 17:46 |
| 5 Amp Fuses for Analog Breakout & Solenoid Breakout | finman | Electrical | 3 | 10-12-2008 11:59 |