startGyroTracking method

void startGyroTracking()

Starts listening to gyroscope data for real-time angle tracking.

Implementation

void startGyroTracking() {
  _gyroSubscription = probe.liveGyroStream.listen((event) {
    _liveAngleTracker.addGyro(event);
  });
}