blob: 37326a208570db3f52e5ad9f0d8c9450ea11ac8c [file] [log] [blame]
Brian Silverman80fc94c2014-03-09 16:56:01 -07001#include "aos/common/logging/logging.h"
2
3#include "bbb/led.h"
4
5#include "frc971/control_loops/claw/claw.q.h"
6
7using ::frc971::control_loops::claw_queue_group;
8
9int main() {
10 ::bbb::LED claw_zeroed(3);
11
12 while (true) {
13 CHECK(claw_queue_group.status.FetchNextBlocking());
14 claw_zeroed.Set(claw_queue_group.status->zeroed_for_auto);
15 }
16}