blob: 43afcc4fb38c1ac1b81f82841bf06ce9accc324b [file] [log] [blame]
Alex Perrycb7da4b2019-08-28 19:35:56 -07001namespace frc971;
2
3// Values retrieved from the PDP.
4// Published on ".frc971.pdp_values"
5table PDPValues {
Ravago Jonesfb6a7a52020-11-14 13:47:46 -08006 voltage:double (id: 0);
7 temperature:double (id: 1);
8 power:double (id: 2);
Alex Perrycb7da4b2019-08-28 19:35:56 -07009 // Array of 16 currents.
Ravago Jonesfb6a7a52020-11-14 13:47:46 -080010 currents:[double] (id: 3);
Alex Perrycb7da4b2019-08-28 19:35:56 -070011}
12
13root_type PDPValues;