blob: 8a766786188128e7a13ab26ffa0b2ede294b2f7e [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
13// Published on "/drivetrain"
14table Uid {
15 uid:uint;
16}
17
18root_type GyroReading;