Austin Schuh | 3bb9a44 | 2014-02-02 16:01:45 -0800 | [diff] [blame] | 1 | #include "frc971/control_loops/claw/claw.h" |
2 | |||||
3 | #include "aos/linux_code/init.h" | ||||
4 | |||||
5 | int main() { | ||||
6 | ::aos::Init(); | ||||
7 | frc971::control_loops::ClawMotor claw; | ||||
8 | claw.Run(); | ||||
9 | ::aos::Cleanup(); | ||||
10 | return 0; | ||||
11 | } |