Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/commit/5920f05e93cebf612dbcb21b8c9f0f009113f488?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
3 deletions
MicroDexed.ino
@ -614,12 +614,12 @@ void handleControlChange(byte inChannel, byte inCtrl, byte inValue)
configuration . dexed [ instance_id ] . portamento_time = inValue ;
MicroDexed [ instance_id ] - > setPortamentoMode ( configuration . dexed [ instance_id ] . portamento_mode , configuration . dexed [ instance_id ] . portamento_glissando , configuration . dexed [ instance_id ] . portamento_time ) ;
break ;
case 7 : // Volume
case 7 : // Instance Volume
# ifdef DEBUG
Serial . println ( F ( " VOLUME CC " ) ) ;
# endif
configuration . vol = map ( inValue , 0 , 0x7f , VOLUME_MIN , VOLUME _MAX ) ;
set_volume ( configuration . vol , configuration . pan , configuration . mono ) ;
configuration . dexed [ instance_id ] . loudness = map ( inValue , 0 , 0x7f , LOUDNESS_MIN , LOUDNESS _MAX) ;
MicroDexed [ instance_id ] - > fx . Gain = mapfloat ( configuration . dexed [ instance_id ] . loudness , LOUDNESS_MIN , LOUDNESS_MAX , 0.0 , 1.0 ) ;
break ;
case 10 : // Pan
# ifdef DEBUG