blob: e1900c462b8ed07c58917131ad4865c12a3381a0 [file] [log] [blame]
Alex Perrycb7da4b2019-08-28 19:35:56 -07001namespace y2014.control_loops.shooter;
2
3table Output {
4 voltage:double;
5 // true: latch engaged, false: latch open
6 latch_piston:bool;
7 // true: brake engaged false: brake released
8 brake_piston:bool;
9}
10
11root_type Output;