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
- Host: GitHub
- URL: https://github.com/josephtlyons/tap_tempo
- Owner: JosephTLyons
- License: gpl-3.0
- Created: 2022-04-17T23:18:07.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-12-30T13:23:18.000Z (6 months ago)
- Last Synced: 2025-04-22T16:18:38.897Z (about 2 months ago)
- Language: Rust
- Homepage:
- Size: 19.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: License.txt
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());
```