Module:Sandbox/Theodore Kloba/PitchNotation

Revision as of 13:50, 9 August 2017 by imported>Theodore Kloba (function list)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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