|
|
@ -63,6 +63,13 @@ extern void eeprom_update_dexed(uint8_t instance_id); |
|
|
|
extern float pseudo_log_curve(float value); |
|
|
|
extern float pseudo_log_curve(float value); |
|
|
|
extern uint8_t selected_instance_id; |
|
|
|
extern uint8_t selected_instance_id; |
|
|
|
extern char receive_bank_filename[FILENAME_LEN]; |
|
|
|
extern char receive_bank_filename[FILENAME_LEN]; |
|
|
|
|
|
|
|
extern uint8_t seqdata[3][16]; |
|
|
|
|
|
|
|
extern uint8_t seqsteptimer; |
|
|
|
|
|
|
|
uint8_t activesample; |
|
|
|
|
|
|
|
#if NUM_DRUMS > 0 |
|
|
|
|
|
|
|
#include "drums.h" |
|
|
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef DISPLAY_LCD_SPI |
|
|
|
#ifdef DISPLAY_LCD_SPI |
|
|
|
extern void change_disp_sd(bool d); |
|
|
|
extern void change_disp_sd(bool d); |
|
|
@ -114,6 +121,7 @@ const char accepted_chars[] = " ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-abcdefghijk |
|
|
|
uint8_t active_perform_page = 1; |
|
|
|
uint8_t active_perform_page = 1; |
|
|
|
uint8_t orig_attack_values[2][7]; |
|
|
|
uint8_t orig_attack_values[2][7]; |
|
|
|
uint8_t orig_release_values[2][7]; |
|
|
|
uint8_t orig_release_values[2][7]; |
|
|
|
|
|
|
|
uint8_t active_seq_track=0; |
|
|
|
|
|
|
|
|
|
|
|
#ifdef I2C_DISPLAY |
|
|
|
#ifdef I2C_DISPLAY |
|
|
|
#include <LiquidCrystal_I2C.h> |
|
|
|
#include <LiquidCrystal_I2C.h> |
|
|
@ -234,6 +242,7 @@ void UI_func_portamento_glissando(uint8_t param); |
|
|
|
void UI_func_portamento_time(uint8_t param); |
|
|
|
void UI_func_portamento_time(uint8_t param); |
|
|
|
void UI_handle_OP(uint8_t param); |
|
|
|
void UI_handle_OP(uint8_t param); |
|
|
|
void UI_func_information(uint8_t param); |
|
|
|
void UI_func_information(uint8_t param); |
|
|
|
|
|
|
|
void UI_func_sequencer(uint8_t param); |
|
|
|
void UI_func_volume(uint8_t param); |
|
|
|
void UI_func_volume(uint8_t param); |
|
|
|
void UI_func_load_performance(uint8_t param); |
|
|
|
void UI_func_load_performance(uint8_t param); |
|
|
|
void UI_func_save_performance(uint8_t param); |
|
|
|
void UI_func_save_performance(uint8_t param); |
|
|
@ -3519,6 +3528,122 @@ void UI_handle_OP(uint8_t param) |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void UI_func_sequencer(uint8_t param) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
String displayname = String(8); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
encoderDir[ENC_R].reset(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// setup function
|
|
|
|
|
|
|
|
lcd.setCursor(0, 0); |
|
|
|
|
|
|
|
lcd.print(drum_config[activesample].midinote); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lcd.setCursor(11, 0); |
|
|
|
|
|
|
|
lcd.print("["); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lcd.setCursor(12, 0); |
|
|
|
|
|
|
|
lcd.print(active_seq_track+1); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lcd.setCursor(13, 0); |
|
|
|
|
|
|
|
lcd.print("/3]"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// lcd.setCursor(2, 0);
|
|
|
|
|
|
|
|
// lcd.print("[" );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lcd.setCursor(0, 1); |
|
|
|
|
|
|
|
lcd.print("----------------" ); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lcd.setCursor(3, 0); |
|
|
|
|
|
|
|
displayname=drum_config[activesample].filename; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lcd.print(displayname.substring(5,12) ); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lcd.setCursor(10, 0); |
|
|
|
|
|
|
|
// lcd.print("]" );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for(int i=0; i<16; i++) {
|
|
|
|
|
|
|
|
lcd.setCursor(i, 1); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (uint8_t d = 0; d < NUM_DRUMCONFIG; d++) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if (seqdata[active_seq_track][i] == drum_config[d].midinote) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
lcd.print(drum_config[d].shortname ); //one letter name of Category
|
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// if ((LCDML.BT_checkDown() && encoderDir[ENC_R].Down()) || (LCDML.BT_checkUp() && encoderDir[ENC_R].Up()))
|
|
|
|
|
|
|
|
// {
|
|
|
|
|
|
|
|
// if (LCDML.BT_checkDown())
|
|
|
|
|
|
|
|
// activesample = constrain(activesample+1,0, NUM_DRUMCONFIG-1);
|
|
|
|
|
|
|
|
// else if (LCDML.BT_checkUp())
|
|
|
|
|
|
|
|
// activesample = constrain(activesample-1,0, NUM_DRUMCONFIG-1);
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//lcd.setCursor(0, 0);
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
//lcd.print(drum_config[activesample].midinote);
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
// lcd.setCursor(3, 0);
|
|
|
|
|
|
|
|
// displayname=drum_config[activesample].filename;
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
// lcd.print(displayname.substring(5,12) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ((LCDML.BT_checkDown() && encoderDir[ENC_R].Down()) || (LCDML.BT_checkUp() && encoderDir[ENC_R].Up())) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if (LCDML.BT_checkDown()) |
|
|
|
|
|
|
|
active_seq_track = constrain(active_seq_track+1,0, 2); |
|
|
|
|
|
|
|
else if (LCDML.BT_checkUp()) |
|
|
|
|
|
|
|
active_seq_track = constrain(active_seq_track-1,0, 2); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lcd.setCursor(0, 1); |
|
|
|
|
|
|
|
lcd.print("----------------" ); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for(int i=0; i<16; i++) {
|
|
|
|
|
|
|
|
lcd.setCursor(i, 1); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (uint8_t d = 0; d < NUM_DRUMCONFIG; d++) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if (seqdata[active_seq_track][i] == drum_config[d].midinote) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
lcd.print(drum_config[d].shortname ); //one letter name of Category
|
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lcd.setCursor(11, 0); |
|
|
|
|
|
|
|
lcd.print("["); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lcd.setCursor(12, 0); |
|
|
|
|
|
|
|
lcd.print(active_seq_track+1); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lcd.setCursor(13, 0); |
|
|
|
|
|
|
|
lcd.print("/3]"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (LCDML.FUNC_close()) // ****** STABLE END *********
|
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
encoderDir[ENC_R].reset(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void UI_func_information(uint8_t param) |
|
|
|
void UI_func_information(uint8_t param) |
|
|
|
{ |
|
|
|
{ |
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|