Skip to content

Commit 2eb899d

Browse files
committed
merge fix
1 parent f02f140 commit 2eb899d

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

edrumulus_parameters.cpp

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,10 @@ void Edrumulus::Pad::apply_preset_pad_settings()
170170

171171
case FD8:
172172
pad_settings.is_control = true;
173-
pad_settings.velocity_threshold = 5;
174-
pad_settings.velocity_sensitivity = 0;
173+
pad_settings.pos_threshold = 5;
174+
pad_settings.pos_sensitivity = 0;
175+
pad_settings.velocity_threshold = 9; // pedal stomp configuration
176+
pad_settings.velocity_sensitivity = 11; // pedal stomp configuration
175177
break;
176178

177179
case VH12: // dual trigger
@@ -190,9 +192,9 @@ void Edrumulus::Pad::apply_preset_pad_settings()
190192
break;
191193

192194
case VH12CTRL:
193-
pad_settings.is_control = true;
194-
pad_settings.velocity_threshold = 19;
195-
pad_settings.velocity_sensitivity = 15;
195+
pad_settings.is_control = true;
196+
pad_settings.pos_threshold = 19;
197+
pad_settings.pos_sensitivity = 28;
196198
break;
197199

198200
case KD7: // single trigger

0 commit comments

Comments
 (0)