Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/commit/6e2c62bbfd546be4e37591c873b72d4412e5812c?style=unified&whitespace=ignore-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Enabled checking of note boundaries for noteOn events.

pull/32/head
Holger Wirtz 6 years ago
parent 0e03e41f2a
commit 6e2c62bbfd
  1. 1
      MicroDexed.ino

@ -650,6 +650,7 @@ void handleNoteOn(byte inChannel, byte inNumber, byte inVelocity)
{
if (checkMidiChannel(inChannel, instance_id))
{
if (inNumber >= configuration.dexed[instance_id].note_start && inNumber <= configuration.dexed[instance_id].note_end)
MicroDexed[instance_id]->keydown(inNumber, inVelocity);
}
}

Loading…
Cancel
Save