Control Surface Encoder Preset select

Hi there,

i wonder if Pieter can answer my question:

I use an encoder to cycle through my list of presets on my softsynth and the encoder skipping a lot of presets, 100s at a time and it's only going in one direction.

This is my code:

// -------------------------------
// New Preset Navigator and Select Button
// -------------------------------
const int speedMultiplier = 1;

// Navigate Through Presets
CCRotaryEncoder enc {
  {16, 17},                                // pins - Playhead (Beats, Scrubbing)
  MIDI_CC::General_Purpose_Controller_5,   // address
  speedMultiplier,                         // multiplier
  1                                        // pulses per click
};

Thanks.

Merry Christmas !

I hope you received more than that from Santa.

What's the data format expected by your softsynth? There are at least four different conventions, see Control Surface: RelativeCCSender.hpp File Reference.

?

Hi Pieter, I solved it. I used CCAbsoluteEncoder and it worked. Thanks.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.