fmodica / fretboard

A configurable fretboard for displaying notes programatically and capturing user input. Built with HTML/CSS/JavaScript.
MIT License
22 stars 5 forks source link

Tuning cannot have 2 notes with the same pitch #1

Open fmodica opened 8 years ago

fmodica commented 8 years ago

You can have:

[{
    letter: "E",
    octave: 4
}, {
    letter: "E",
    octave: 2
}]

But not:

[{
    letter: "E",
    octave: 4
}, {
    letter: "E",
    octave: 4
}]

Hopefully it is rare to want a tuning with 2 notes of the same pitch.