untested one-touch shooting

This commit is contained in:
Aidan Ferguson 2016-02-20 13:58:35 -05:00
parent 139ae70b1b
commit 3584fc4634
2 changed files with 6 additions and 1 deletions

View File

@ -202,7 +202,7 @@ private:
* Every time the method is called. This cannot be a loop in the Shoot method because
* that would lock the robot every time the trigger is hit.
*/
if(operator_stick.GetRawButton(TRIGGER))
if(operator_stick.GetRawButton(TRIGGER) || (shooter.GetState() != 0))
{
shooting = true;
shooter.Shoot();

View File

@ -175,6 +175,11 @@ public:
launcher->Set(power);
//std::cout << "setting shooter power" << std::endl;
}
int GetState()
{
return state;
}
private:
//RobotDrive *shooterDrive;