Hello.
I have an arduino sketch for esp8266+midi shield.
#include <MIDI.h>
MIDI_CREATE_DEFAULT_INSTANCE();
void setup()
{
MIDI.begin(MIDI_CHANNEL_OMNI);
}
void loop()
{
int i;
for (i = 0; i < 127; i = i + 1) {
MIDI.sendControlChange(31, i, 1);
delay(1000);
}
}
It sends a controlchange message to X-touch compact midi controller with motorised faders.
So the fader moves after receiving midi shown above, but it doesn't happen if this message comes from arduino.
But if it comes from behringer xr-12 (digital mixer) fader is moving.
I've attached two screenshots from protokol app that shows midi from arduino sketch and from xr12.
Thanks for any help