Source code for jdxi_editor.midi.control_change.parameter

"""
Control Change Parameters
"""

from enum import Enum


[docs] class CCParameter(Enum): """Control Change Parameter"""
[docs] CUTOFF = "Cutoff"
[docs] RESONANCE = "Resonance"
[docs] LEVEL = "Level"
[docs] LFO_RATE = "LFO Rate"