diff options
| author | s-ol <s+removethis@s-ol.nu> | 2022-03-21 22:02:42 +0000 |
|---|---|---|
| committer | s-ol <s+removethis@s-ol.nu> | 2022-03-21 22:02:42 +0000 |
| commit | 35e57671f2cf055bd096e1d53b511efb604d683a (patch) | |
| tree | 3d136c5c3dba17a9fe67125c14a9e034207939fb /app/notes.js | |
| parent | fix clicking keys (diff) | |
| download | isomorphic-kb-explorer-35e57671f2cf055bd096e1d53b511efb604d683a.tar.gz isomorphic-kb-explorer-35e57671f2cf055bd096e1d53b511efb604d683a.zip | |
add various labeling schemes
Diffstat (limited to 'app/notes.js')
| -rw-r--r-- | app/notes.js | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/app/notes.js b/app/notes.js index 3d71a41..bd124a5 100644 --- a/app/notes.js +++ b/app/notes.js @@ -1,16 +1,7 @@ -export const music = { - 11: 'B', - 10: 'A#', - 9: 'A', - 8: 'G#', - 7: 'G', - 6: 'F#', - 5: 'F', - 4: 'E', - 3: 'D#', - 2: 'D', - 1: 'C#', - 0: 'C', +export const labels = { + english: 'C C# D D# E F F# G G# A A# B'.split(' '), + german: 'C C# D D# E F F# G G# A A# H'.split(' '), + sol: 'do do# re re# mi fa fa# sol sol# la la# si'.split(' '), }; export const key2midi = { |
