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

Added logarithmic volume curve.

pull/4/head
Holger Wirtz 7 years ago
parent bfac53701b
commit 8c648d4864
  1. 2
      MicroDexed.ino

@ -587,7 +587,7 @@ void set_volume(float v, float vr, float vl)
#endif
#ifdef TEENSY_AUDIO_BOARD
sgtl5000_1.dacVolume(vol * vol_left, vol * vol_right);
sgtl5000_1.dacVolume(log(vol * vol_left), log(vol * vol_right));
#else
volume_master.gain(vol);
volume_r.gain(vr);

Loading…
Cancel
Save