Making a bridge for Nektar PACER #1064
Logawinner
started this conversation in
General
Replies: 1 comment 1 reply
|
For changing graphs with a program change you shouldn't need a custom midi handler or OSC at all. Just use the graph properties in the left side panel. For each graph set the Program number and it should "just work" This is an old video, but still relevant for the 1.0 flavor coming out soon: |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
//Hello I am trying to make a bridge from element to my Nektar PACER and it's not working. Can I have a few pointers?
#include
#include
#include
#include <lo/lo.h>
#include <rtmidi/RtMidi.h>
#include
// Callback function: triggered on MIDI input
void midiCallback(double deltatime, std::vector *message, void *userData) {
// Program Change is a 2-byte message: [Status, Program Number]
if (!message || message->size() < 2) return;
);
}
int main() {
lo_address element = lo_address_new("127.0.0.1", "24000");
if (!element) {
std::cerr << "Failed to create OSC address.\n";
return 1;
}
}
All reactions