getGyroAngularSpeeds method

List<double> getGyroAngularSpeeds()

Gets the last angular speed values, in °/sec, retrieved from the gyroscope, for the x, y and z axis. Call updateValues repeatedly with a high frequency to get accurate values.

Implementation

List<double> getGyroAngularSpeeds() {
  return [_gyroAngularSpeedX, _gyroAngularSpeedY, _gyroAngularSpeedZ];
}