Arkham / elm-chords / Instruments.Guitar

A guitar representation.


type alias Config =
{ tuning : List Chords.Pitch.Pitch
, numFrets : Basics.Int 
}

Configure your guitar by passing a tuning and the number of frets.

Defaults

defaultTuning : List Chords.Pitch.Pitch

The default tuning of a guitar.

Find voicings

voicings : Config -> Chords.Chord -> List Chords.Voicing

Returns a list of possible voicings of a chord on a guitar.