eegBand property

EEGband get eegBand

Implementation

EEGband get eegBand {
  final b = _binauralBeat.abs();

  if (b < 4) return EEGband.delta;
  if (b < 8) return EEGband.theta;
  if (b < 12) return EEGband.alpha;
  if (b < 30) return EEGband.beta;
  return EEGband.gamma;
}