diff --git a/README.md b/README.md index 5c287d3..c17f1ee 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,19 @@ #Metronome -A metronome for the Flipper Zero device. +A metronome for the Flipper Zero device. Goes along perfectly with my [BPM tapper](https://github.com/panki27/bpm-tapper)(https://github.com/panki27/bpm-tapper). + +![screenshot](img/screenshot.png) + +## Features + +- BPM adjustable, fine and coarse (hold pressed) +- Selectable amount of beats per bar +- First bar is pronounced +- Selectable note length +- LED flashes accordingly + +## Compiling + +``` +./fbt firmware_metronome +``` diff --git a/application.fam b/application.fam index a037ddb..4e8d003 100644 --- a/application.fam +++ b/application.fam @@ -7,6 +7,8 @@ App( requires=[ "gui", ], + fap_icon="metronome_icon.png", + fap_category="Music", stack_size=2 * 1024, order=20, ) diff --git a/img/screenshot.png b/img/screenshot.png new file mode 100644 index 0000000..a680e12 Binary files /dev/null and b/img/screenshot.png differ diff --git a/metronome_icon.png b/metronome_icon.png new file mode 100644 index 0000000..64d0ddb Binary files /dev/null and b/metronome_icon.png differ