blob: c86fcab972b60789c4e54ec63299b7439d15c1f7 [file] [log] [blame]
package frc971.sensors;
message GyroReading {
// Positive is counter-clockwise (Austin says "it's Positive").
// Right-hand coordinate system around the Z-axis going up.
// The angle is measured in radians.
double angle;
// The angular velocity in radians/sec
double velocity;
};
queue GyroReading gyro_reading;
// Published on ".frc971.sensors.gyro_part_id"
message Uid {
uint32_t uid;
};