Re-tuned PID for PacGoat.

Change-Id: I0355db7dcfa2c9147845cdcc37322208e5271d98
This commit is contained in:
Alex Henning
2014-06-26 19:35:25 -07:00
parent 1ba20bc1eb
commit 56cf731680
9 changed files with 21 additions and 21 deletions

View File

@@ -8,13 +8,13 @@
#include "Commands/Shoot.h"
DriveAndShootAutonomous::DriveAndShootAutonomous() {
AddSequential(new CloseClaw());
AddSequential(new WaitForPressure(), 2);
#ifdef REAL
// NOTE: Simulation doesn't currently have the concept of hot.
AddSequential(new CheckForHotGoal(2));
#endif
AddSequential(new CloseClaw());
AddSequential(new SetPivotSetpoint(45));
AddSequential(new DriveForward(8, 0.4));
AddSequential(new DriveForward(8, 0.3));
AddSequential(new Shoot());
}