blob: 1ebe28c8b799ddd18d8d672769bff8d80052c458 [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
Ravago Jonesfb6a7a52020-11-14 13:47:46 -080012 voltage:double (id: 0);
Alex Perrycb7da4b2019-08-28 19:35:56 -070013}
14
15root_type BallDetector;