Contents:
PlotContext
PlotConfig
BasePlotWidget
midi_to_pitch_level()
midi_to_cutoff_level()
midi_to_time_normalized()
DrumPitchEnvPlot
DrumTVFEnvPlot
DrumTVAEnvPlot
PartialSelectState
PartialSwitchState
WMTEnvelopeWidget
app
JDXiMidiGroup
OscillatorDefinition
midi_value_to_float()
WMTEnvPlot
"""Effects Common""" from enum import Enum [docs] class AddressParameterEffectCommon(Enum): """Common parameters for Effects.""" [docs] PROGRAM_EFFECT_1 = 0x02 [docs] PROGRAM_EFFECT_2 = 0x04 [docs] PROGRAM_DELAY = 0x06 [docs] PROGRAM_REVERB = 0x08 @property [docs] def address(self) -> int: return self.value # Access Enum value correctly