An open API service indexing awesome lists of open source software.

https://github.com/josephtlyons/tap_tempo

Calculate tempos by simply tapping
https://github.com/josephtlyons/tap_tempo

Last synced: about 2 months ago
JSON representation

Calculate tempos by simply tapping

Awesome Lists containing this project

README

        

# tap_tempo

Calculate tempos by simply tapping

```rust
let mut tap_tempo = TapTempo::new();
let tempo = tap_tempo.tap();
assert!(tempo.is_none());

// After some time has passed ...

let tempo = tap_tempo.tap();
assert!(tempo.is_some());
```