From 67372cccf8c2b4cd238e747f1817891a56abc019 Mon Sep 17 00:00:00 2001 From: Ricard Wanderlof Date: Sat, 15 Nov 2025 22:35:57 +0000 Subject: [PATCH] zynthian_engine_jalv: Add controls for JV-880 Add Expression, Reverb and Chorus real-time controls for JV-880, in addition to the already existing Modulation Wheel. --- zyngine/zynthian_engine_jalv.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/zyngine/zynthian_engine_jalv.py b/zyngine/zynthian_engine_jalv.py index 0c3be7c5e..0eb390b63 100644 --- a/zyngine/zynthian_engine_jalv.py +++ b/zyngine/zynthian_engine_jalv.py @@ -128,8 +128,11 @@ class zynthian_engine_jalv(zynthian_engine): 'volume': [7, 98], 'panning': [10, 64], 'modulation wheel': [1, 0], + 'expression': [11, 64], 'filter cutoff': [74, 64], - 'filter resonance': [71, 64] + 'filter resonance': [71, 64], + 'reverb': [91, 127], + 'chorus': [93, 127] }, "ctrl_screens": { '_default_synth': ['modulation wheel'], @@ -153,6 +156,7 @@ class zynthian_engine_jalv(zynthian_engine): 'synthv1': [], 'Surge': ['modulation wheel'], 'padthv1': [], + 'VirtualJV': ['modulation wheel', 'expression', 'reverb', 'chorus'], 'Vex': [], 'amsynth': ['modulation wheel'], 'JC303': [],