blob: bd2e02f1ec543b4d7e9f2e40d89938c5945d83f1 [file] [log] [blame]
Adam Snaider18f44172016-10-22 15:30:21 -07001package y2016_bot3.sensors;
2
3message BallDetector {
4 // Voltage measured by the ball detector sensor.
5
6 // Higher voltage means ball is closer to detector, lower voltage means ball
7 // is far from the sensor or not in the robot at all.
8 // TODO(comran): Check to see if our sensor's output corresponds with the
9 // comment above.
10
11 double voltage;
12};
13queue BallDetector ball_detector;