blob: e986a10adf6ce52d08cd5a7ab1c3b2687d062689 [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;