From 35e57671f2cf055bd096e1d53b511efb604d683a Mon Sep 17 00:00:00 2001 From: s-ol Date: Mon, 21 Mar 2022 23:02:42 +0100 Subject: add various labeling schemes --- app/notes.js | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) (limited to 'app/notes.js') 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 = { -- cgit v1.2.3