blob: c4ef07c027ac1320df440391e72dfacf79ab6134 [file] [log] [blame]
Alex Perrycb7da4b2019-08-28 19:35:56 -07001namespace y2016.sensors;
Comran Morshedaa0573c2016-03-05 19:05:54 +00002
Alex Perrycb7da4b2019-08-28 19:35:56 -07003// Published on "/superstructure"
4table BallDetector {
Comran Morshedaa0573c2016-03-05 19:05:54 +00005 // Voltage measured by the ball detector sensor.
6
7 // Higher voltage means ball is closer to detector, lower voltage means ball
8 // is far from the sensor or not in the robot at all.
9 // TODO(comran): Check to see if our sensor's output corresponds with the
10 // comment above.
11
Alex Perrycb7da4b2019-08-28 19:35:56 -070012 voltage:double;
13}
14
15root_type BallDetector;