Documentation for this module may be created at Module:Sandbox/Theodore Kloba/PitchNotation/doc
-- Pitch notation tools for conversion between shorthand versions and nicely rendered ones.
local p={}
-- Helmholtz shorthand › MIDI #
p.hpn2mid = function( frame )
end
-- Scientific shorthand › MIDI #
p.spn2mid = function( frame )
end
-- MIDI # › Helmholtz
p.mid2hpn = function( frame )
end
-- MIDI # › Scientific
p.mid2spn = function( frame )
end
-- Helmholtz shorthand › Helmholtz
p.hpn = function( frame )
end
-- Scientific shorthand › Scientific
p.spn = function( frame )
end
return p