blob: 513424cf9d6a9046022974b46180f7760b75249f [file] [log] [blame]
James Kuszmaulcdd033e2013-03-02 15:10:43 -08001#include "frc971/control_loops/shooter.h"
2
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}