blob: 7181ce960ca7083b7005dbaa3558b97bdc8972f3 [file] [log] [blame]
Brian Silverman6bf0d3c2014-03-08 12:52:54 -08001package frc971.sensors;
2
3message OtherSensors {
4 double sonar_distance;
5 double plunger_hall_effect_distance;
6};
7queue OtherSensors other_sensors;
8
9message GyroReading {
10 double angle;
11};
12queue GyroReading gyro_reading;