Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add EDHarmonica to the list #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions harmonica_tablature.qml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ MuseScore {
ListElement { text: "F"; harpkey: 65 }
ListElement { text: "F#"; harpkey: 66 }
ListElement { text: "High G"; harpkey: 67 }
ListElement { text: "ED C"; harpkey: 57 }
}
width: 100
onCurrentIndexChanged: {
Expand All @@ -92,6 +93,7 @@ MuseScore {
ListElement { text: "Power Bender (Brendan Power), valved"; tuning: 11 }
ListElement { text: "Power Draw (Brendan Power), valved"; tuning: 12 }
ListElement { text: "Standard Chromatic"; tuning: 4 }
ListElement { text: "Standard Eeasy Diatonic (ED)"; tuning: 13 }
}
width: 100
onCurrentIndexChanged: {
Expand Down Expand Up @@ -206,6 +208,10 @@ MuseScore {
powerDraw[-2] = "+1bb"; powerDraw[-1] = "+1b"; //Two notes below the key at blow 1
// Brendan Power's tuning, half valved

var standardEasyDiatonic = ["+1", "-1b", "-1", "+2", "-2b", "-2", "+2o", "+3", "-3bb", "-3b", "-3", "+3o", "+4", "-4b", "-4",
"+5", "-5b", "-5", "+5o", "+6", "-6b", "-6b", "-6", "+6o", "+7", "-7b", "-7",
"+8", "-8b", "-8", "+8b", "+9", "-9bb", "-9b", "-9", "+9o", "+10", "-10b", "-10" ];

var tuning = richter
switch (harp.tuning) {
case 1: tuning = richter; break;
Expand All @@ -220,6 +226,7 @@ MuseScore {
case 10: tuning = paddyRichter; break;
case 11: tuning = powerBender; break;
case 12: tuning = powerDraw; break;
case 13: tuning = standardEasyDiatonic; break;
default: tuning = richter; break;
}

Expand Down