blob: 7a33567d95c53e97656b069d052a1d43c37a14c9 [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 {
Brian Silverman176303a2014-04-10 10:54:55 -070010 // Positive is counter-clockwise (Austin says "it's Positive").
11 // Right-hand coordinate system around the Z-axis going up.
Brian Silverman6bf0d3c2014-03-08 12:52:54 -080012 double angle;
13};
14queue GyroReading gyro_reading;
Brian Silverman45ceeb52014-04-17 15:15:18 -070015
16message AutoMode {
17 double voltage;
18};
19queue AutoMode auto_mode;