@ -1242,9 +1242,15 @@ void UI_func_delay_time(uint8_t param)
if ( ( LCDML . BT_checkDown ( ) & & encoderDir [ ENC_R ] . Down ( ) ) | | ( LCDML . BT_checkUp ( ) & & encoderDir [ ENC_R ] . Up ( ) ) | | ( LCDML . BT_checkEnter ( ) & & encoderDir [ ENC_R ] . ButtonShort ( ) ) )
{
if ( LCDML . BT_checkDown ( ) )
{
configuration . fx . delay_time [ selected_instance_id ] = constrain ( configuration . fx . delay_time [ selected_instance_id ] + ENCODER [ ENC_R ] . speed ( ) , DELAY_TIME_MIN , DELAY_TIME_MAX ) ;
MD_sendControlChange ( configuration . dexed [ selected_instance_id ] . midi_channel , 105 , configuration . fx . delay_time [ selected_instance_id ] ) ;
}
else if ( LCDML . BT_checkUp ( ) )
{
configuration . fx . delay_time [ selected_instance_id ] = constrain ( configuration . fx . delay_time [ selected_instance_id ] - ENCODER [ ENC_R ] . speed ( ) , DELAY_TIME_MIN , DELAY_TIME_MAX ) ;
MD_sendControlChange ( configuration . dexed [ selected_instance_id ] . midi_channel , 105 , configuration . fx . delay_time [ selected_instance_id ] ) ;
}
# if NUM_DEXED > 1
else if ( LCDML . BT_checkEnter ( ) )
{
@ -1298,9 +1304,15 @@ void UI_func_delay_feedback(uint8_t param)
if ( ( LCDML . BT_checkDown ( ) & & encoderDir [ ENC_R ] . Down ( ) ) | | ( LCDML . BT_checkUp ( ) & & encoderDir [ ENC_R ] . Up ( ) ) | | ( LCDML . BT_checkEnter ( ) & & encoderDir [ ENC_R ] . ButtonShort ( ) ) )
{
if ( LCDML . BT_checkDown ( ) )
{
configuration . fx . delay_feedback [ selected_instance_id ] = constrain ( configuration . fx . delay_feedback [ selected_instance_id ] + ENCODER [ ENC_R ] . speed ( ) , DELAY_FEEDBACK_MIN , DELAY_FEEDBACK_MAX ) ;
MD_sendControlChange ( configuration . dexed [ selected_instance_id ] . midi_channel , 106 , configuration . fx . delay_feedback [ selected_instance_id ] ) ;
}
else if ( LCDML . BT_checkUp ( ) )
{
configuration . fx . delay_feedback [ selected_instance_id ] = constrain ( configuration . fx . delay_feedback [ selected_instance_id ] - ENCODER [ ENC_R ] . speed ( ) , DELAY_FEEDBACK_MIN , DELAY_FEEDBACK_MAX ) ;
MD_sendControlChange ( configuration . dexed [ selected_instance_id ] . midi_channel , 106 , configuration . fx . delay_feedback [ selected_instance_id ] ) ;
}
# if NUM_DEXED > 1
else if ( LCDML . BT_checkEnter ( ) )
{
@ -1351,9 +1363,15 @@ void UI_func_delay_level(uint8_t param)
if ( ( LCDML . BT_checkDown ( ) & & encoderDir [ ENC_R ] . Down ( ) ) | | ( LCDML . BT_checkUp ( ) & & encoderDir [ ENC_R ] . Up ( ) ) | | ( LCDML . BT_checkEnter ( ) & & encoderDir [ ENC_R ] . ButtonShort ( ) ) )
{
if ( LCDML . BT_checkDown ( ) )
{
configuration . fx . delay_level [ selected_instance_id ] = constrain ( configuration . fx . delay_level [ selected_instance_id ] + ENCODER [ ENC_R ] . speed ( ) , DELAY_LEVEL_MIN , DELAY_LEVEL_MAX ) ;
MD_sendControlChange ( configuration . dexed [ selected_instance_id ] . midi_channel , 107 , configuration . fx . delay_level [ selected_instance_id ] ) ;
}
else if ( LCDML . BT_checkUp ( ) )
{
configuration . fx . delay_level [ selected_instance_id ] = constrain ( configuration . fx . delay_level [ selected_instance_id ] - ENCODER [ ENC_R ] . speed ( ) , DELAY_LEVEL_MIN , DELAY_LEVEL_MAX ) ;
MD_sendControlChange ( configuration . dexed [ selected_instance_id ] . midi_channel , 107 , configuration . fx . delay_level [ selected_instance_id ] ) ;
}
# if NUM_DEXED > 1
else if ( LCDML . BT_checkEnter ( ) )
{
@ -1462,9 +1480,15 @@ void UI_func_filter_cutoff(uint8_t param)
if ( ( LCDML . BT_checkDown ( ) & & encoderDir [ ENC_R ] . Down ( ) ) | | ( LCDML . BT_checkUp ( ) & & encoderDir [ ENC_R ] . Up ( ) ) | | ( LCDML . BT_checkEnter ( ) & & encoderDir [ ENC_R ] . ButtonShort ( ) ) )
{
if ( LCDML . BT_checkDown ( ) )
{
configuration . fx . filter_cutoff [ selected_instance_id ] = constrain ( configuration . fx . filter_cutoff [ selected_instance_id ] + ENCODER [ ENC_R ] . speed ( ) , FILTER_CUTOFF_MIN , FILTER_CUTOFF_MAX ) ;
MD_sendControlChange ( configuration . dexed [ selected_instance_id ] . midi_channel , 104 , configuration . fx . filter_cutoff [ selected_instance_id ] ) ;
}
else if ( LCDML . BT_checkUp ( ) )
{
configuration . fx . filter_cutoff [ selected_instance_id ] = constrain ( configuration . fx . filter_cutoff [ selected_instance_id ] - ENCODER [ ENC_R ] . speed ( ) , FILTER_CUTOFF_MIN , FILTER_CUTOFF_MAX ) ;
MD_sendControlChange ( configuration . dexed [ selected_instance_id ] . midi_channel , 104 , configuration . fx . filter_cutoff [ selected_instance_id ] ) ;
}
# if NUM_DEXED > 1
else if ( LCDML . BT_checkEnter ( ) )
{
@ -1515,9 +1539,15 @@ void UI_func_filter_resonance(uint8_t param)
if ( ( LCDML . BT_checkDown ( ) & & encoderDir [ ENC_R ] . Down ( ) ) | | ( LCDML . BT_checkUp ( ) & & encoderDir [ ENC_R ] . Up ( ) ) | | ( LCDML . BT_checkEnter ( ) & & encoderDir [ ENC_R ] . ButtonShort ( ) ) )
{
if ( LCDML . BT_checkDown ( ) )
{
configuration . fx . filter_resonance [ selected_instance_id ] = constrain ( configuration . fx . filter_resonance [ selected_instance_id ] + ENCODER [ ENC_R ] . speed ( ) , FILTER_RESONANCE_MIN , FILTER_RESONANCE_MAX ) ;
MD_sendControlChange ( configuration . dexed [ selected_instance_id ] . midi_channel , 103 , configuration . fx . filter_resonance [ selected_instance_id ] ) ;
}
else if ( LCDML . BT_checkUp ( ) )
{
configuration . fx . filter_resonance [ selected_instance_id ] = constrain ( configuration . fx . filter_resonance [ selected_instance_id ] - ENCODER [ ENC_R ] . speed ( ) , FILTER_RESONANCE_MIN , FILTER_RESONANCE_MAX ) ;
MD_sendControlChange ( configuration . dexed [ selected_instance_id ] . midi_channel , 103 , configuration . fx . filter_resonance [ selected_instance_id ] ) ;
}
# if NUM_DEXED > 1
else if ( LCDML . BT_checkEnter ( ) )
{
@ -1933,9 +1963,15 @@ void UI_func_panorama(uint8_t param)
if ( LCDML . FUNC_loop ( ) ) // ****** LOOP *********
{
if ( LCDML . BT_checkDown ( ) & & encoderDir [ ENC_R ] . Down ( ) & & configuration . sys . mono = = 0 )
{
configuration . dexed [ selected_instance_id ] . pan = constrain ( configuration . dexed [ selected_instance_id ] . pan + ENCODER [ ENC_R ] . speed ( ) , PANORAMA_MIN , PANORAMA_MAX ) ;
MD_sendControlChange ( configuration . dexed [ selected_instance_id ] . midi_channel , 10 , configuration . dexed [ selected_instance_id ] . pan ) ;
}
else if ( LCDML . BT_checkUp ( ) & & encoderDir [ ENC_R ] . Up ( ) & & configuration . sys . mono = = 0 )
{
configuration . dexed [ selected_instance_id ] . pan = constrain ( configuration . dexed [ selected_instance_id ] . pan - ENCODER [ ENC_R ] . speed ( ) , PANORAMA_MIN , PANORAMA_MAX ) ;
MD_sendControlChange ( configuration . dexed [ selected_instance_id ] . midi_channel , 10 , configuration . dexed [ selected_instance_id ] . pan ) ;
}
# if NUM_DEXED > 1
else if ( LCDML . BT_checkEnter ( ) & & encoderDir [ ENC_R ] . ButtonShort ( ) )
{