blob: 72b820e0f8293340e2da7aeda1486cbae00e2fce [file] [log] [blame]
Austin Schuhc682d612013-03-03 14:32:52 -08001#include "frc971/control_loops/shooter/shooter.h"
James Kuszmaulcdd033e2013-03-02 15:10:43 -08002
3#include "aos/aos_core.h"
4
Austin Schuh0e38a5d2013-03-03 03:53:35 -08005int main() {
6 ::aos::Init();
7 frc971::control_loops::ShooterMotor shooter;
8 shooter.Run();
9 ::aos::Cleanup();
10 return 0;
11}