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

Added bank switching by master key.

pull/4/head
Holger Wirtz 7 years ago
parent 09f4b3463e
commit d4f09c574d
  1. 6
      MicroDexed.ino

@ -308,6 +308,12 @@ bool handle_master_key(uint8_t data)
Serial.print(F("Volume changed to: ")); Serial.print(F("Volume changed to: "));
Serial.println(num * 0.1, DEC); Serial.println(num * 0.1, DEC);
} }
else if (num > 10 && num <= 20)
{
bank=num-11;
Serial.print(F("Bank switch to: "));
Serial.println(bank, DEC);
}
} }
return (false); return (false);
} }

Loading…
Cancel
Save