blob: eaf0713301f89d96a57738debca9f9e37a9df8d6 [file] [log] [blame]
Alex Perrycb7da4b2019-08-28 19:35:56 -07001namespace y2014.control_loops.shooter;
2
3table Output {
Austin Schuhb3375e02020-11-14 15:28:31 -08004 voltage:double (id: 0);
Alex Perrycb7da4b2019-08-28 19:35:56 -07005 // true: latch engaged, false: latch open
Austin Schuhb3375e02020-11-14 15:28:31 -08006 latch_piston:bool (id: 1);
Alex Perrycb7da4b2019-08-28 19:35:56 -07007 // true: brake engaged false: brake released
Austin Schuhb3375e02020-11-14 15:28:31 -08008 brake_piston:bool (id: 2);
Alex Perrycb7da4b2019-08-28 19:35:56 -07009}
10
11root_type Output;