blob: b6f4a8cd128152b9d85ad6fcf5a24d4e483d631d [file] [log] [blame]
Brian Silverman17f503e2015-08-02 18:17:18 -07001#include "y2014/control_loops/shooter/shooter.h"
2
John Park398c74a2018-10-20 21:17:39 -07003#include "aos/init.h"
Brian Silverman17f503e2015-08-02 18:17:18 -07004
5int main() {
6 ::aos::Init();
Austin Schuh24957102015-11-28 16:04:40 -08007 ::y2014::control_loops::ShooterMotor shooter;
Brian Silverman17f503e2015-08-02 18:17:18 -07008 shooter.Run();
9 ::aos::Cleanup();
10 return 0;
11}