Skip to content

paolosanchi/TapTempo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TapTempo

An Arduino tap tempo library

With this library you can obtain the time difference between multiple input. It is still in developement, please, give me a couple of day to wire everything up.

Any idea to enanche it are welcome!

Usage sample

#include <TapTempo.h>
#include <movingAvg.h>
#include <Button.h>

#define TAP 2

TapTempo tap;
Button btn = Button(TAP, BUTTON_PULLDOWN);

void setup()
{
  tap.setup(TAP);
  tap.valueUpdatedHandler(valueChanged);  
  tap.beatHandler(beat);
  
  btn.clickHandler(onTempoClick);
  Serial.begin(9600);
}

void loop()
{  
  tap.flush();
  btn.isPressed();
}

void onTempoClick(Button &b)
{
  Serial.println(" ");
  Serial.println("TAP!");
  tap.tap();
}

void beat()
{  
  Serial.println("BEAT!");
}

void valueChanged(int val)
{
    Serial.print("New value!");
    Serial.println(val, DEC);
}

About

An Arduino tap tempo library

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published