|
|
@ -1388,8 +1388,8 @@ void UI_func_chorus_send(uint8_t param) |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
chorus_send_mixer_r.gain(instance_id, configuration.dexed[instance_id].chorus_send / 200.0); |
|
|
|
chorus_send_mixer_r.gain(instance_id, configuration.dexed[instance_id].chorus_send / 100.0); |
|
|
|
chorus_send_mixer_l.gain(instance_id, configuration.dexed[instance_id].chorus_send / 200.0); |
|
|
|
chorus_send_mixer_l.gain(instance_id, configuration.dexed[instance_id].chorus_send / 100.0); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
lcd.setCursor(0, 1); |
|
|
|
lcd.setCursor(0, 1); |
|
|
@ -1544,8 +1544,8 @@ void UI_func_delay_feedback(uint8_t param) |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
delay_fb_mixer_r.gain(1, configuration.delay_feedback / 200.0 ); // amount of feedback
|
|
|
|
delay_fb_mixer_r.gain(1, configuration.delay_feedback / 100.0); // amount of feedback
|
|
|
|
delay_fb_mixer_l.gain(1, configuration.delay_feedback / 200.0 ); // amount of feedback
|
|
|
|
delay_fb_mixer_l.gain(1, configuration.delay_feedback / 100.0); // amount of feedback
|
|
|
|
//delay_fb_mixer.gain(0, 1.0 - configuration.delay_feedback / 200.0); // original signal
|
|
|
|
//delay_fb_mixer.gain(0, 1.0 - configuration.delay_feedback / 200.0); // original signal
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -3207,7 +3207,7 @@ void UI_func_midi_soft_thru(uint8_t param) |
|
|
|
{ |
|
|
|
{ |
|
|
|
// setup function
|
|
|
|
// setup function
|
|
|
|
lcd.setCursor(0, 0); |
|
|
|
lcd.setCursor(0, 0); |
|
|
|
lcd.print(F("MIDI-Soft_Thru")); |
|
|
|
lcd.print(F("MIDI Soft THRU")); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
@ -3436,6 +3436,31 @@ void UI_func_save(uint8_t param) |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void UI_function_not_enabled(void) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
// setup function
|
|
|
|
|
|
|
|
lcd.setCursor(0, 0); |
|
|
|
|
|
|
|
lcd.print(F("Function not")); |
|
|
|
|
|
|
|
lcd.setCursor(0, 1); |
|
|
|
|
|
|
|
lcd.print(F("enbaled!")); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if (LCDML.BT_checkEnter()) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
LCDML.FUNC_goBackToMenu(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (LCDML.FUNC_close()) // ****** STABLE END *********
|
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
// you can here reset some global vars or do nothing
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void UI_function_not_implemented(uint8_t param) |
|
|
|
void UI_function_not_implemented(uint8_t param) |
|
|
|
{ |
|
|
|
{ |
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
@ -3460,6 +3485,7 @@ void UI_function_not_implemented(uint8_t param) |
|
|
|
// you can here reset some global vars or do nothing
|
|
|
|
// you can here reset some global vars or do nothing
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void lcd_display_int(int16_t var, uint8_t size, bool zeros, bool brackets, bool sign) |
|
|
|
void lcd_display_int(int16_t var, uint8_t size, bool zeros, bool brackets, bool sign) |
|
|
|
{ |
|
|
|
{ |
|
|
|
int16_t tmp = 0; |
|
|
|
int16_t tmp = 0; |
|
|
|