triggerVibrationBurst method

Future<void> triggerVibrationBurst(
  1. int repeat,
  2. int duration,
  3. int pulseDuration,
  4. int intensity,
)

Triggers a vibration burst pattern on the Nimmsta device.

repeat specifies the number of bursts. duration is the total duration of the burst sequence in milliseconds. pulseDuration defines the duration of a single pulse. intensity represents the vibration intensity.

Implementation

Future<void> triggerVibrationBurst(
    int repeat, int duration, int pulseDuration, int intensity) {
  throw UnimplementedError(
      'triggerVibrationBurst() has not been implemented.');
}