public interface Gyro
Modifier and Type | Method and Description |
---|---|
void |
calibrate()
Calibrate the gyro by running for a number of samples and computing the center value.
|
void |
free()
Free the resources used by the gyro.
|
double |
getAngle()
Return the actual angle in degrees that the robot is currently facing.
|
double |
getRate()
Return the rate of rotation of the gyro.
|
void |
reset()
Reset the gyro.
|
void calibrate()
void reset()
double getAngle()
The angle is based on the current accumulator value corrected by the oversampling rate, the gyro type and the A/D calibration values. The angle is continuous, that is it will continue from 360 to 361 degrees. This allows algorithms that wouldn't want to see a discontinuity in the gyro output as it sweeps past from 360 to 0 on the second time around.
This heading is based on integration of the returned rate from the gyro.
double getRate()
The rate is based on the most recent reading of the gyro analog value
void free()