Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 1 | namespace frc971.wpilib; |
2 | |||||
3 | // Information about the current state of the pneumatics system to log. | ||||
4 | table PneumaticsToLog { | ||||
Ravago Jones | fb6a7a5 | 2020-11-14 13:47:46 -0800 | [diff] [blame] | 5 | compressor_on:bool (id: 0); |
6 | read_solenoids:ubyte (id: 1); | ||||
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 7 | } |
Austin Schuh | ed5b26d | 2019-12-05 20:51:59 -0800 | [diff] [blame] | 8 | |
9 | root_type PneumaticsToLog; |