blob: 8a766786188128e7a13ab26ffa0b2ede294b2f7e [file] [log] [blame]
namespace frc971.sensors;
// Published on "/drivetrain"
table 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.
angle:double;
// The angular velocity in radians/sec
velocity:double;
}
// Published on "/drivetrain"
table Uid {
uid:uint;
}
root_type GyroReading;