blob: a6dce45cba439de3bf8b4a36fb10663007c7af52 [file] [log] [blame]
Alex Perrycb7da4b2019-08-28 19:35:56 -07001namespace frc971.sensors;
2
3// Published on "/drivetrain"
4table GyroReading {
5 // Positive is counter-clockwise (Austin says "it's Positive").
6 // Right-hand coordinate system around the Z-axis going up.
7 // The angle is measured in radians.
8 angle:double;
9 // The angular velocity in radians/sec
10 velocity:double;
11}
12
Alex Perrycb7da4b2019-08-28 19:35:56 -070013root_type GyroReading;