Source code for jdxi_editor.midi.data.parameter.effects.common

"""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