note_frequencies 0.1.1

Generate a lookup table of midi note frequencies
Documentation
1
2
3
4
5
6
7
8
use note_frequencies::note_frequencies_32;

note_frequencies_32!(440.0);

#[test]
fn works() {
    assert_eq!(NOTE_FREQUENCIES[69], 440.0f32);
}