cs-midi/tests/examples/output/cc_rotary_encoder.cpp

29 lines
755 B
C++

// CCRotaryEncoder — relative CC encoder for DAW parameter control.
// Original: examples/1. MIDI Output/3. Rotary Encoders/RotaryEncoder/RotaryEncoder/RotaryEncoder.ino
#include "pico/stdlib.h"
#include "pico/cyw43_arch.h"
#include <cs_midi.h>
using namespace cs;
BluetoothMIDI_Interface midi;
CCRotaryEncoder enc {
{0, 2}, // encoder pins A and B (constructs AHEncoder)
{16, Channel_1}, // CC address
1, // speed multiplier
4, // pulses per step
};
int main() {
stdio_init_all();
RelativeCCSender::setMode(relativeCCmode::MACKIE_CONTROL_RELATIVE);
if (cyw43_arch_init()) return 1;
Control_Surface.begin();
while (true) {
Control_Surface.loop();
sleep_ms(1);
}
}