Third robot commit.
All tests pass!
Change-Id: I086248537f075fd06afdfb3e94670eb7646aaf6c
diff --git a/y2016_bot3/queues/ball_detector.q b/y2016_bot3/queues/ball_detector.q
new file mode 100644
index 0000000..bd2e02f
--- /dev/null
+++ b/y2016_bot3/queues/ball_detector.q
@@ -0,0 +1,13 @@
+package y2016_bot3.sensors;
+
+message BallDetector {
+ // Voltage measured by the ball detector sensor.
+
+ // Higher voltage means ball is closer to detector, lower voltage means ball
+ // is far from the sensor or not in the robot at all.
+ // TODO(comran): Check to see if our sensor's output corresponds with the
+ // comment above.
+
+ double voltage;
+};
+queue BallDetector ball_detector;