Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/commit/4a7cde77e249d2dcf51f4d19374dbc1dffa75683?style=unified&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
7 additions and
6 deletions
MicroDexed.ino
@ -688,12 +688,13 @@ void handleControlChange(byte inChannel, byte inCtrl, byte inValue)
# ifdef DEBUG
Serial . println ( F ( " VOLUME CC " ) ) ;
# endif
configuration . dexed [ instance_id ] . sound_intensity = map ( inValue , 0 , 0x7f , SOUND_INTENSITY_MIN , SOUND_INTENSITY_MAX ) ;
# ifdef USE_FX
//configuration.dexed[instance_id].sound_intensity = map(inValue, 0, 0x7f, SOUND_INTENSITY_MIN, SOUND_INTENSITY_MAX);
/*#ifdef USE_FX
MicroDexed [ instance_id ] - > fx . Gain = mapfloat ( configuration . dexed [ instance_id ] . sound_intensity , SOUND_INTENSITY_MIN , SOUND_INTENSITY_MAX , 0.0 , SOUND_INTENSITY_AMP_MAX ) ;
# else
dexed_level [ instance_id ] - > gain ( pseudo_log_curve ( mapfloat ( configuration . dexed [ instance_id ] . sound_intensity , SOUND_INTENSITY_MIN , SOUND_INTENSITY_MAX , 0.0 , SOUND_INTENSITY_AMP_MAX ) ) ) ;
# endif
# else* /
dexed_level [ instance_id ] - > gain ( pseudo_log_curve ( mapfloat ( map ( inValue , 0 , 0x7f , 0 , configuration . dexed [ instance_id ] . sound_intensity ) , SOUND_INTENSITY_MIN , SOUND_INTENSITY_MAX , 0.0 , SOUND_INTENSITY_AMP_MAX ) ) ) ;
//#endif
if ( LCDML . FUNC_getID ( ) = = LCDML . OTHER_getIDFromFunction ( UI_func_sound_intensity ) )
{
LCDML . OTHER_updateFunc ( ) ;