getFilteredAngles method

List<double> getFilteredAngles()

Last angle value, in °, calculated from the accelerometer and the gyroscope, for the x, y and z axis. Call updateValues repeatedly with a high frequency to get accurate values.

Implementation

List<double> getFilteredAngles() {
  return [_filteredAngleX, _filteredAngleY, _filteredAngleZ];
}