blob: f1bc013e52257b7d85cceab7b748b5acd9c58e35 [file] [log] [blame]
Alex Perrycb7da4b2019-08-28 19:35:56 -07001namespace y2017.vision;
2
3// Published on ".y2017.vision.vision_status"
4table VisionStatus {
5 image_valid:bool;
6
7 // Distance to the target in meters.
8 distance:double;
9 // The angle in radians of the bottom of the target.
10 angle:double;
11
12 // Capture time of the angle using the clock behind monotonic_clock::now().
13 target_time:long;
14}
15
16root_type VisionStatus;