blob: d90a4b94b058513f513c570789e439d843bc428b [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 (id: 0);
// The angular velocity in radians/sec
velocity:double (id: 1);
}
root_type GyroReading;