Bon si vous ne branchez rien dans OUT ça ne devrait pas faire de perturbations (pas sûr)
essayez de modifier le fichier Engine.cpp
ajoutez en première ligne du fichier
#include <Arduino.h>
puis modifiez la fonction setupArp() de cette façon :
void arp::setupArp(short bn, short bo, short os, unsigned short st, unsigned int d, int m, unsigned imode)
{
baseNote = (notes) map(bn, 0, 800, 0, 11);
baseOctave = (short) map(bo, 0, 800, 0, 7);
octaveShift = (short) map(os, 0, 800, 0, 7);
steps = (unsigned short) map(st, 0, 800, 1, 6);
indelay = (unsigned int) map(d, 0, 800, 0, 500);
mode = all_chords[(unsigned int) map(imode, 0, 800, 0, 8)];
order = (unsigned int) map(m, 0, 800, 0, 4);
Serial.print(F("indelay = ")); Serial.println(indelay); // <<=== RAJOUTEZ CETTE LIGNE
}
et modifiez aussi la fonction midibegin()
void arp::midibegin()
{
MIDI.begin(4); // Launch MIDI
Serial.begin(115200); // <<==== ENLEVEZ LES // POUR NE PAS METTRE CELA EN COMMENTAIRE
}
--> il faut conserver le câble USB branché sur l'Arduino, Ouvrez le moniteur série à 115200 bauds et regardez s'il ya un affichage lorsque vous bougez le potentiomètre