You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IDetector.java 282B

12345678
  1. package com.feemers.android.fftdrawer.SignalProcessing;
  2. public interface IDetector {
  3. public void onNewSample(double sample);
  4. public void setSampleRate(double sampleRate);
  5. public void setThreshold(double threshold);
  6. public void connectNotifier(Notifier notifier);
  7. }