blob: 31b24bf086b38b8c1c10c87ed0529d41f1c9ac71 [file] [log] [blame]
Brian Silverman17f503e2015-08-02 18:17:18 -07001#include "y2014/control_loops/shooter/shooter.h"
2
3#include "aos/linux_code/init.h"
4
5int main() {
6 ::aos::Init();
7 frc971::control_loops::ShooterMotor shooter;
8 shooter.Run();
9 ::aos::Cleanup();
10 return 0;
11}