blob: d76412f2dd3b2b5e2972b50f1d7458f2f1746f74 [file] [log] [blame]
Alex Perrycb7da4b2019-08-28 19:35:56 -07001namespace frc971.wpilib;
2
3// Information about the current state of the pneumatics system to log.
4table PneumaticsToLog {
Ravago Jonesfb6a7a52020-11-14 13:47:46 -08005 compressor_on:bool (id: 0);
6 read_solenoids:ubyte (id: 1);
Alex Perrycb7da4b2019-08-28 19:35:56 -07007}
Austin Schuhed5b26d2019-12-05 20:51:59 -08008
9root_type PneumaticsToLog;