Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/commit/f8a45bef03c204424ce6783cde7bb35bec585871?style=unified&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
5 additions and
5 deletions
UI.hpp
config.h
@ -1754,8 +1754,8 @@ void UI_func_sound_intensity(uint8_t param)
if ( LCDML . FUNC_setup ( ) ) // ****** SETUP *********
{
// setup function
lcd . setCursor ( 0 , 0 ) ;
lcd . print ( F ( " Sound Intens. " ) ) ;
lcd_special_chars ( BLOCKBAR ) ;
lcd_display_bar_int ( " Sound Intens. " , configuration . dexed [ instance_id ] . sound_intensity , SOUND_INTENSITY_MIN , SOUND_INTENSITY_MAX , 3 , false , false , false , true ) ;
}
if ( LCDML . FUNC_loop ( ) ) // ****** LOOP *********
@ -1784,13 +1784,13 @@ void UI_func_sound_intensity(uint8_t param)
MicroDexed [ instance_id ] - > fx . Gain = configuration . dexed [ instance_id ] . sound_intensity / 100.0 ;
}
lcd . setCursor ( 0 , 1 ) ;
lcd_display_int ( configuration . dexed [ instance_id ] . sound_intensity , 3 , true , true , false ) ;
lcd_display_bar_int ( " Sound Intens. " , configuration . dexed [ instance_id ] . sound_intensity , SOUND_INTENSITY_MIN , SOUND_INTENSITY_MAX , 3 , false , false , false , false ) ;
}
if ( LCDML . FUNC_close ( ) ) // ****** STABLE END *********
{
// you can here reset some global vars or do nothing
lcd_special_chars ( SCROLLBAR ) ;
eeprom_write ( ) ;
}
}
@ -97,7 +97,7 @@
# define AUDIO_MEM 384
# endif
# define REDUCE_LOUDNESS 0
# define REDUCE_LOUDNESS_FACTOR 0.65
//#define REDUCE_LOUDNESS_FACTOR 1.0
# else // IF TEENSY_AUDIO_BOARD
# define SGTL5000_LINEOUT_LEVEL 29
# if AUDIO_BLOCK_SAMPLES == 64