|
|
|
/*
|
|
|
|
MicroDexed
|
|
|
|
|
|
|
|
MicroDexed is a port of the Dexed sound engine
|
|
|
|
(https://github.com/asb2m10/dexed) for the Teensy-3.5/3.6 with audio shield.
|
|
|
|
Dexed ist heavily based on https://github.com/google/music-synthesizer-for-android
|
|
|
|
|
|
|
|
(c)2018,2019 H. Wirtz <wirtz@parasitstudio.de>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software Foundation,
|
|
|
|
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef ENABLE_LCD_UI
|
|
|
|
#ifndef _UI_HPP_
|
|
|
|
#define _UI_HPP_
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "Disp_Plus.h"
|
|
|
|
#include "SoftenValue.hpp"
|
|
|
|
#include "effect_modulated_delay.h"
|
|
|
|
#include "effect_stereo_mono.h"
|
|
|
|
#include "dexed.h"
|
|
|
|
|
|
|
|
#include <LCDMenuLib2.h>
|
|
|
|
#include <Encoder.h>
|
|
|
|
|
|
|
|
#define _LCDML_DISP_cols LCD_cols
|
|
|
|
#define _LCDML_DISP_rows LCD_rows
|
|
|
|
|
|
|
|
#ifdef I2C_DISPLAY
|
|
|
|
#define _LCDML_DISP_cfg_cursor 0x7E // cursor Symbol
|
|
|
|
#else
|
|
|
|
#define _LCDML_DISP_cfg_cursor 0x8d // cursor Symbol
|
|
|
|
#endif
|
|
|
|
#define _LCDML_DISP_cfg_scrollbar 1 // enable a scrollbar
|
|
|
|
|
|
|
|
extern config_t configuration;
|
|
|
|
extern void set_volume(uint8_t v, int8_t p, uint8_t m);
|
|
|
|
extern char bank_names[MAX_BANKS][BANK_NAME_LEN];
|
|
|
|
extern char bank_name[BANK_NAME_LEN];
|
|
|
|
extern char voice_name[VOICE_NAME_LEN];
|
|
|
|
extern char voice_names[MAX_VOICES][VOICE_NAME_LEN];
|
|
|
|
extern void strip_extension(char* s, char *target);
|
|
|
|
extern void eeprom_write(void);
|
|
|
|
extern bool get_voice_names_from_bank(uint8_t b);
|
|
|
|
extern bool load_sysex(uint8_t b, uint8_t v);
|
|
|
|
#ifdef DISPLAY_LCD_SPI
|
|
|
|
extern void change_disp_sd(bool d);
|
|
|
|
#endif
|
|
|
|
extern SoftenValue <uint8_t> soften_volume;
|
|
|
|
extern SoftenValue <uint8_t> soften_filter_res[NUM_DEXED];
|
|
|
|
extern SoftenValue <uint8_t> soften_filter_cut[NUM_DEXED];
|
|
|
|
extern AudioEffectDelay delay1;
|
|
|
|
#ifdef USE_REVERB
|
|
|
|
extern AudioEffectFreeverbStereo freeverbs1;
|
|
|
|
#endif
|
|
|
|
extern AudioEffectModulatedDelay modchorus;
|
|
|
|
extern AudioSynthWaveform modulator;
|
|
|
|
extern AudioMixer4 delay_fb_mixer;
|
|
|
|
extern AudioMixer4 master_mixer_r;
|
|
|
|
extern AudioMixer4 master_mixer_l;
|
|
|
|
extern AudioAmplifier volume_r;
|
|
|
|
extern AudioAmplifier volume_l;
|
|
|
|
extern AudioEffectStereoMono stereomono1;
|
|
|
|
extern AudioSourceMicroDexed * MicroDexed[NUM_DEXED];
|
|
|
|
extern uint8_t selected_dexed_instance;
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
GLOBAL
|
|
|
|
************************************************************************/
|
|
|
|
elapsedMillis back_from_volume;
|
|
|
|
|
|
|
|
#ifdef I2C_DISPLAY
|
|
|
|
#include <LiquidCrystal_I2C.h>
|
|
|
|
Disp_Plus<LiquidCrystal_I2C> lcd(LCD_I2C_ADDRESS, _LCDML_DISP_cols, _LCDML_DISP_rows);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef U8X8_DISPLAY
|
|
|
|
#include <U8x8lib.h>
|
|
|
|
#ifdef U8X8_HAVE_HW_SPI
|
|
|
|
#include <SPI.h>
|
|
|
|
#endif
|
|
|
|
#ifdef U8X8_HAVE_HW_I2C
|
|
|
|
#include <Wire.h>
|
|
|
|
#endif
|
|
|
|
Disp_Plus<U8X8_DISPLAY_CLASS> lcd(/* cs=*/ U8X8_CS_PIN, /* dc=*/ U8X8_DC_PIN, /* reset=*/ U8X8_RESET_PIN);
|
|
|
|
//Disp_Plus<U8X8_DISPLAY_CLASS> lcd(U8X8_PIN_NONE);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
const uint8_t scroll_bar[5][8] = {
|
|
|
|
{B10001, B10001, B10001, B10001, B10001, B10001, B10001, B10001}, // scrollbar top
|
|
|
|
{B11111, B11111, B10001, B10001, B10001, B10001, B10001, B10001}, // scroll state 1
|
|
|
|
{B10001, B10001, B11111, B11111, B10001, B10001, B10001, B10001}, // scroll state 2
|
|
|
|
{B10001, B10001, B10001, B10001, B11111, B11111, B10001, B10001}, // scroll state 3
|
|
|
|
{B10001, B10001, B10001, B10001, B10001, B10001, B11111, B11111} // scrollbar bottom
|
|
|
|
};
|
|
|
|
|
|
|
|
enum { ENC_R, ENC_L };
|
|
|
|
enum { MENU_START, MENU_VOICE, MENU_EDIT, MENU_VOLUME };
|
|
|
|
enum {MENU_VOICE_BANK, MENU_VOICE_SOUND};
|
|
|
|
uint8_t menu_state = MENU_START;
|
|
|
|
uint8_t menu_voice = MENU_VOICE_SOUND;
|
|
|
|
void lcdml_menu_display(void);
|
|
|
|
void lcdml_voice_menu_display(void);
|
|
|
|
void lcdml_menu_clear(void);
|
|
|
|
void lcdml_menu_control(void);
|
|
|
|
void encoder_right_up(void);
|
|
|
|
void encoder_right_down(void);
|
|
|
|
void encoder_right_button_long(void);
|
|
|
|
void encoder_right_button_short(void);
|
|
|
|
void encoder_left_up(void);
|
|
|
|
void encoder_left_down(void);
|
|
|
|
void encoder_left_button_long(void);
|
|
|
|
void encoder_left_button_short(void);
|
|
|
|
void lcdml_voice_menu_control(void);
|
|
|
|
void UI_func_sound(uint8_t param);
|
|
|
|
void UI_func_reverb_roomsize(uint8_t param);
|
|
|
|
void UI_func_reverb_damping(uint8_t param);
|
|
|
|
void UI_func_reverb_level(uint8_t param);
|
|
|
|
void UI_func_chorus_frequency(uint8_t param);
|
|
|
|
void UI_func_chorus_waveform(uint8_t param);
|
|
|
|
void UI_func_chorus_depth(uint8_t param);
|
|
|
|
void UI_func_chorus_level(uint8_t param);
|
|
|
|
void UI_func_delay_time(uint8_t param);
|
|
|
|
void UI_func_delay_feedback(uint8_t param);
|
|
|
|
void UI_func_delay_level(uint8_t param);
|
|
|
|
void UI_func_filter_cutoff(uint8_t param);
|
|
|
|
void UI_func_filter_resonance(uint8_t param);
|
|
|
|
void UI_func_midi_channel(uint8_t param);
|
|
|
|
void UI_func_loudness(uint8_t param);
|
|
|
|
void UI_func_panorama(uint8_t param);
|
|
|
|
void UI_func_stereo_mono(uint8_t param);
|
|
|
|
void UI_func_polyphony(uint8_t param);
|
|
|
|
void UI_func_engine(uint8_t param);
|
|
|
|
void UI_func_mono_poly(uint8_t param);
|
|
|
|
void UI_func_pb_range(uint8_t param);
|
|
|
|
void UI_func_pb_step(uint8_t param);
|
|
|
|
void UI_func_mw_range(uint8_t param);
|
|
|
|
void UI_func_mw_step(uint8_t param);
|
|
|
|
void UI_func_fc_range(uint8_t param);
|
|
|
|
void UI_func_fc_step(uint8_t param);
|
|
|
|
void UI_func_at_range(uint8_t param);
|
|
|
|
void UI_func_at_step(uint8_t param);
|
|
|
|
void UI_func_information(uint8_t param);
|
|
|
|
void UI_func_voice_selection(uint8_t param);
|
|
|
|
void UI_func_volume(uint8_t param);
|
|
|
|
void UI_function_not_enabled(void);
|
|
|
|
void UI_function_not_implemented(uint8_t param);
|
|
|
|
void lcd_display_int(int16_t var, uint8_t size, bool zeros, bool brackets, bool sign);
|
|
|
|
void lcd_display_float(float var, uint8_t size_number, uint8_t size_fraction, bool zeros, bool brackets, bool sign);
|
|
|
|
|
|
|
|
// normal menu
|
|
|
|
LCDMenuLib2_menu LCDML_0(255, 0, 0, NULL, NULL); // normal root menu element (do not change)
|
|
|
|
LCDMenuLib2 LCDML(LCDML_0, _LCDML_DISP_rows, _LCDML_DISP_cols, lcdml_menu_display, lcdml_menu_clear, lcdml_menu_control);
|
|
|
|
|
|
|
|
// LCDML_add(id, prev_layer, new_num, lang_char_array, callback_function)
|
|
|
|
#if NUM_DEXED > 1
|
|
|
|
LCDML_add(0, LCDML_0, 1, "Setup", NULL);
|
|
|
|
LCDML_add(1, LCDML_0_1, 1, "Instances", UI_function_not_implemented);
|
|
|
|
LCDML_add(2, LCDML_0_1, 2, "Instance 1", NULL);
|
|
|
|
LCDML_add(3, LCDML_0_1_2, 1, "MIDI Channel 1", UI_func_midi_channel);
|
|
|
|
LCDML_add(4, LCDML_0_1_2, 2, "Loudness 1", UI_func_loudness);
|
|
|
|
LCDML_add(5, LCDML_0_1_2, 3, "Reverb Level 1", UI_func_reverb_level);
|
|
|
|
LCDML_add(6, LCDML_0_1_2, 4, "Chorus Level 1", UI_func_chorus_level);
|
|
|
|
LCDML_add(7, LCDML_0_1_2, 5, "Delay Level 1", UI_func_delay_level);
|
|
|
|
LCDML_add(8, LCDML_0_1_2, 6, "Panorama 1", UI_func_panorama);
|
|
|
|
LCDML_add(9, LCDML_0_1_2, 7, "Polyphony 1", UI_func_polyphony);
|
|
|
|
LCDML_add(10, LCDML_0_1_2, 8, "Engine 1", UI_func_engine);
|
|
|
|
LCDML_add(11, LCDML_0_1_2, 9, "Mono/Poly 1", UI_func_mono_poly);
|
|
|
|
LCDML_add(12, LCDML_0_1_2, 10, "Pitchbend 1", NULL);
|
|
|
|
LCDML_add(13, LCDML_0_1_2_7, 1, "PB Range 1", UI_func_pb_range);
|
|
|
|
LCDML_add(14, LCDML_0_1_2_7, 2, "PB Step 1", UI_func_pb_step);
|
|
|
|
LCDML_add(15, LCDML_0_1_2, 11, "Mod Wheel 1", NULL);
|
|
|
|
LCDML_add(16, LCDML_0_1_2_8, 1, "MW Range 1", UI_function_not_implemented);
|
|
|
|
LCDML_add(17, LCDML_0_1_2_8, 2, "MW Assign 1", UI_function_not_implemented);
|
|
|
|
LCDML_add(18, LCDML_0_1_2, 12, "Foot Ctrl 1", NULL);
|
|
|
|
LCDML_add(19, LCDML_0_1_2_9, 1, "FC Range 1", UI_function_not_implemented);
|
|
|
|
LCDML_add(20, LCDML_0_1_2_9, 2, "FC Assign 1", UI_function_not_implemented);
|
|
|
|
LCDML_add(21, LCDML_0_1_2, 13, "Breath Ctrl 1", NULL);
|
|
|
|
LCDML_add(22, LCDML_0_1_2_10, 1, "BC Range 1", UI_function_not_implemented);
|
|
|
|
LCDML_add(23, LCDML_0_1_2_10, 2, "BC Assign 1", UI_function_not_implemented);
|
|
|
|
LCDML_add(24, LCDML_0_1_2, 14, "Aftertouch 1", NULL);
|
|
|
|
LCDML_add(25, LCDML_0_1_2_11, 1, "AT Range 1", UI_function_not_implemented);
|
|
|
|
LCDML_add(26, LCDML_0_1_2_11, 2, "AT Assign 1", UI_function_not_implemented);
|
|
|
|
LCDML_add(27, LCDML_0_1_2, 15, "Portamento 1", NULL);
|
|
|
|
LCDML_add(28, LCDML_0_1_2_12, 1, "Port. Mode 1", UI_function_not_enabled);
|
|
|
|
LCDML_add(29, LCDML_0_1_2_12, 2, "Port. Gliss 1", UI_function_not_enabled);
|
|
|
|
LCDML_add(30, LCDML_0_1_2_12, 3, "Port. Time 1", UI_function_not_enabled);
|
|
|
|
LCDML_add(31, LCDML_0_1_2, 16, "Operator 1", NULL);
|
|
|
|
LCDML_add(32, LCDML_0_1_2_13, 1, "OP1 1", UI_function_not_implemented);
|
|
|
|
LCDML_add(33, LCDML_0_1_2_13, 2, "OP2 1", UI_function_not_implemented);
|
|
|
|
LCDML_add(34, LCDML_0_1_2_13, 3, "OP3 1", UI_function_not_implemented);
|
|
|
|
LCDML_add(35, LCDML_0_1_2_13, 4, "OP4 1", UI_function_not_implemented);
|
|
|
|
LCDML_add(36, LCDML_0_1_2_13, 5, "OP5 1", UI_function_not_implemented);
|
|
|
|
LCDML_add(37, LCDML_0_1_2_13, 6, "OP6 1", UI_function_not_implemented);
|
|
|
|
LCDML_add(38, LCDML_0_1, 3, "Instance 2", NULL);
|
|
|
|
LCDML_add(39, LCDML_0_1_3, 1, "MIDI Channel 2", UI_func_midi_channel);
|
|
|
|
LCDML_add(40, LCDML_0_1_3, 2, "Loudness 2", UI_func_loudness);
|
|
|
|
LCDML_add(41, LCDML_0_1_3, 3, "Reverb Level 2", UI_func_reverb_level);
|
|
|
|
LCDML_add(42, LCDML_0_1_3, 4, "Chorus Level 2", UI_func_chorus_level);
|
|
|
|
LCDML_add(43, LCDML_0_1_3, 5, "Delay Level 2", UI_func_delay_level);
|
|
|
|
LCDML_add(44, LCDML_0_1_3, 6, "Panorama 2", UI_func_panorama);
|
|
|
|
LCDML_add(45, LCDML_0_1_3, 7, "Polyphony 2", UI_func_polyphony);
|
|
|
|
LCDML_add(46, LCDML_0_1_3, 8, "Engine 2", UI_func_engine);
|
|
|
|
LCDML_add(47, LCDML_0_1_3, 9, "Mono/Poly 2", UI_func_mono_poly);
|
|
|
|
LCDML_add(48, LCDML_0_1_3, 10, "Pitchbend 2", NULL);
|
|
|
|
LCDML_add(49, LCDML_0_1_3_7, 1, "PB Range 2", UI_func_pb_range);
|
|
|
|
LCDML_add(50, LCDML_0_1_3_7, 2, "PB Step 2", UI_func_pb_step);
|
|
|
|
LCDML_add(51, LCDML_0_1_3, 11, "Mod Wheel 2", NULL);
|
|
|
|
LCDML_add(52, LCDML_0_1_3_8, 1, "MW Range 2", UI_function_not_implemented);
|
|
|
|
LCDML_add(53, LCDML_0_1_3_8, 2, "MW Assign 2", UI_function_not_implemented);
|
|
|
|
LCDML_add(54, LCDML_0_1_3, 12, "Foot Ctrl 2", NULL);
|
|
|
|
LCDML_add(55, LCDML_0_1_3_9, 1, "FC Range 2", UI_function_not_implemented);
|
|
|
|
LCDML_add(56, LCDML_0_1_3_9, 2, "FC Assign 2", UI_function_not_implemented);
|
|
|
|
LCDML_add(57, LCDML_0_1_3, 13, "Breat Ctrl 2", NULL);
|
|
|
|
LCDML_add(58, LCDML_0_1_3_10, 1, "BC Range 2", UI_function_not_implemented);
|
|
|
|
LCDML_add(59, LCDML_0_1_3_10, 2, "BC Assign 2", UI_function_not_implemented);
|
|
|
|
LCDML_add(60, LCDML_0_1_3, 14, "Aftertouch 2", NULL);
|
|
|
|
LCDML_add(61, LCDML_0_1_3_11, 1, "AT Range 2", UI_function_not_implemented);
|
|
|
|
LCDML_add(62, LCDML_0_1_3_11, 2, "AT Assign 2", UI_function_not_implemented);
|
|
|
|
LCDML_add(63, LCDML_0_1_3, 15, "Portamento 2", NULL);
|
|
|
|
LCDML_add(64, LCDML_0_1_3_12, 1, "Port. Mode 2", UI_function_not_enabled);
|
|
|
|
LCDML_add(65, LCDML_0_1_3_12, 2, "Port. Gliss 2", UI_function_not_enabled);
|
|
|
|
LCDML_add(66, LCDML_0_1_3_12, 3, "Port. Time 2", UI_function_not_enabled);
|
|
|
|
LCDML_add(67, LCDML_0_1_3, 16, "Operator 2", NULL);
|
|
|
|
LCDML_add(68, LCDML_0_1_3_13, 1, "OP1 2", UI_function_not_implemented);
|
|
|
|
LCDML_add(69, LCDML_0_1_3_13, 2, "OP2 2", UI_function_not_implemented);
|
|
|
|
LCDML_add(70, LCDML_0_1_3_13, 3, "OP3 2", UI_function_not_implemented);
|
|
|
|
LCDML_add(71, LCDML_0_1_3_13, 4, "OP4 2", UI_function_not_implemented);
|
|
|
|
LCDML_add(72, LCDML_0_1_3_13, 5, "OP5 2", UI_function_not_implemented);
|
|
|
|
LCDML_add(73, LCDML_0_1_3_13, 6, "OP6 2", UI_function_not_implemented);
|
|
|
|
LCDML_add(74, LCDML_0, 2, "Effect", NULL);
|
|
|
|
LCDML_add(75, LCDML_0_2, 1, "Reverb", NULL);
|
|
|
|
LCDML_add(76, LCDML_0_2_1, 1, "Roomsize", UI_func_reverb_roomsize);
|
|
|
|
LCDML_add(77, LCDML_0_2_1, 2, "Damping", UI_func_reverb_damping);
|
|
|
|
LCDML_add(78, LCDML_0_2, 2, "Chorus", NULL);
|
|
|
|
LCDML_add(79, LCDML_0_2_2, 1, "Frequency", UI_func_chorus_frequency);
|
|
|
|
LCDML_add(80, LCDML_0_2_2, 2, "Waveform", UI_func_chorus_waveform);
|
|
|
|
LCDML_add(81, LCDML_0_2_2, 3, "Depth", UI_func_chorus_depth);
|
|
|
|
LCDML_add(82, LCDML_0_2, 3, "Delay", NULL);
|
|
|
|
LCDML_add(83, LCDML_0_2_3, 1, "Time", UI_func_delay_time);
|
|
|
|
LCDML_add(84, LCDML_0_2_3, 2, "Feedback", UI_func_delay_feedback);
|
|
|
|
LCDML_add(85, LCDML_0_2, 4, "Filter", NULL);
|
|
|
|
LCDML_add(86, LCDML_0_2_4, 1, "Cutoff", UI_func_filter_cutoff);
|
|
|
|
LCDML_add(87, LCDML_0_2_4, 2, "Resonance", UI_func_filter_resonance);
|
|
|
|
LCDML_add(88, LCDML_0, 3, "Store", NULL);
|
|
|
|
LCDML_add(89, LCDML_0, 4, "System", NULL);
|
|
|
|
LCDML_add(90, LCDML_0_4, 1, "Stereo/Mono", UI_func_stereo_mono);
|
|
|
|
LCDML_add(91, LCDML_0, 5, "Info", UI_func_information);
|
|
|
|
#define _LCDML_DISP_cnt 91
|
|
|
|
#define MENU_ID_OF_INSTANCE_2 38
|
|
|
|
#else
|
|
|
|
LCDML_add(0, LCDML_0, 1, "Setup", NULL);
|
|
|
|
LCDML_add(1, LCDML_0_1, 2, "Instance 1", NULL);
|
|
|
|
LCDML_add(2, LCDML_0_1_2, 1, "MIDI Channel", UI_func_midi_channel);
|
|
|
|
LCDML_add(3, LCDML_0_1_2, 2, "Loudness", UI_func_loudness);
|
|
|
|
LCDML_add(4, LCDML_0_1_2, 3, "Reverb Level", UI_func_reverb_level);
|
|
|
|
LCDML_add(5, LCDML_0_1_2, 4, "Chorus Level", UI_func_chorus_level);
|
|
|
|
LCDML_add(6, LCDML_0_1_2, 5, "Delay Level", UI_func_delay_level);
|
|
|
|
LCDML_add(7, LCDML_0_1_2, 6, "Panorama", UI_func_panorama);
|
|
|
|
LCDML_add(8, LCDML_0_1_2, 7, "Polyphony", UI_func_polyphony);
|
|
|
|
LCDML_add(9, LCDML_0_1_2, 8, "Engine", UI_func_engine);
|
|
|
|
LCDML_add(10, LCDML_0_1_2, 9, "Mono/Poly", UI_func_mono_poly);
|
|
|
|
LCDML_add(11, LCDML_0_1_2, 10, "Pitchbend", NULL);
|
|
|
|
LCDML_add(12, LCDML_0_1_2_10, 1, "PB Range", UI_func_pb_range);
|
|
|
|
LCDML_add(13, LCDML_0_1_2_10, 2, "PB Step", UI_func_pb_step);
|
|
|
|
LCDML_add(14, LCDML_0_1_2, 11, "Mod Wheel", NULL);
|
|
|
|
LCDML_add(15, LCDML_0_1_2_11, 1, "MW Range", UI_function_not_implemented);
|
|
|
|
LCDML_add(16, LCDML_0_1_2_11, 2, "MW Assign", UI_function_not_implemented);
|
|
|
|
LCDML_add(17, LCDML_0_1_2, 12, "Foot Ctrl", NULL);
|
|
|
|
LCDML_add(18, LCDML_0_1_2_12, 1, "FC Range", UI_function_not_implemented);
|
|
|
|
LCDML_add(19, LCDML_0_1_2_12, 2, "FC Assign", UI_function_not_implemented);
|
|
|
|
LCDML_add(20, LCDML_0_1_2, 13, "Breath Ctrl", NULL);
|
|
|
|
LCDML_add(21, LCDML_0_1_2_13, 1, "BC Range", UI_function_not_implemented);
|
|
|
|
LCDML_add(22, LCDML_0_1_2_13, 2, "BC Assign", UI_function_not_implemented);
|
|
|
|
LCDML_add(23, LCDML_0_1_2, 14, "Aftertouch", NULL);
|
|
|
|
LCDML_add(24, LCDML_0_1_2_14, 1, "AT Range", UI_function_not_implemented);
|
|
|
|
LCDML_add(25, LCDML_0_1_2_14, 2, "AT Assign", UI_function_not_implemented);
|
|
|
|
LCDML_add(26, LCDML_0_1_2, 15, "Portamento", NULL);
|
|
|
|
LCDML_add(27, LCDML_0_1_2_15, 1, "Port. Mode", UI_function_not_enabled);
|
|
|
|
LCDML_add(28, LCDML_0_1_2_15, 2, "Port. Gliss", UI_function_not_enabled);
|
|
|
|
LCDML_add(29, LCDML_0_1_2_15, 3, "Port. Time", UI_function_not_enabled);
|
|
|
|
LCDML_add(30, LCDML_0_1_2, 16, "Operator", NULL);
|
|
|
|
LCDML_add(31, LCDML_0_1_2_16, 1, "OP1", UI_function_not_implemented);
|
|
|
|
LCDML_add(32, LCDML_0_1_2_16, 2, "OP2", UI_function_not_implemented);
|
|
|
|
LCDML_add(33, LCDML_0_1_2_16, 3, "OP3", UI_function_not_implemented);
|
|
|
|
LCDML_add(34, LCDML_0_1_2_16, 4, "OP4", UI_function_not_implemented);
|
|
|
|
LCDML_add(35, LCDML_0_1_2_16, 5, "OP5", UI_function_not_implemented);
|
|
|
|
LCDML_add(36, LCDML_0_1_2_16, 6, "OP6", UI_function_not_implemented);
|
|
|
|
LCDML_add(37, LCDML_0, 2, "Effect", NULL);
|
|
|
|
LCDML_add(38, LCDML_0_2, 1, "Reverb", NULL);
|
|
|
|
LCDML_add(39, LCDML_0_2_1, 1, "Roomsize", UI_func_reverb_roomsize);
|
|
|
|
LCDML_add(40, LCDML_0_2_1, 2, "Damping", UI_func_reverb_damping);
|
|
|
|
LCDML_add(41, LCDML_0_2, 2, "Chorus", NULL);
|
|
|
|
LCDML_add(42, LCDML_0_2_2, 1, "Frequency", UI_func_chorus_frequency);
|
|
|
|
LCDML_add(43, LCDML_0_2_2, 2, "Waveform", UI_func_chorus_waveform);
|
|
|
|
LCDML_add(44, LCDML_0_2_2, 3, "Depth", UI_func_chorus_depth);
|
|
|
|
LCDML_add(45, LCDML_0_2, 3, "Delay", NULL);
|
|
|
|
LCDML_add(46, LCDML_0_2_3, 1, "Time", UI_func_delay_time);
|
|
|
|
LCDML_add(47, LCDML_0_2_3, 2, "Feedback", UI_func_delay_feedback);
|
|
|
|
LCDML_add(48, LCDML_0_2, 4, "Filter", NULL);
|
|
|
|
LCDML_add(49, LCDML_0_2_4, 1, "Cutoff", UI_func_filter_cutoff);
|
|
|
|
LCDML_add(50, LCDML_0_2_4, 2, "Resonance", UI_func_filter_resonance);
|
|
|
|
LCDML_add(51, LCDML_0, 3, "Store", NULL);
|
|
|
|
LCDML_add(52, LCDML_0, 4, "System", NULL);
|
|
|
|
LCDML_add(53, LCDML_0_4, 1, "Stereo/Mono", UI_func_stereo_mono);
|
|
|
|
LCDML_add(54, LCDML_0, 5, "Info", UI_func_information);
|
|
|
|
#define _LCDML_DISP_cnt 54
|
|
|
|
#define MENU_ID_OF_INSTANCE_2 37
|
|
|
|
#endif
|
|
|
|
// create menu
|
|
|
|
LCDML_createMenu(_LCDML_DISP_cnt);
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
CONTROL
|
|
|
|
***********************************************************************/
|
|
|
|
#define g_LCDML_CONTROL_button_long_press LONG_BUTTON_PRESS
|
|
|
|
#define g_LCDML_CONTROL_button_short_press BUT_DEBOUNCE_MS
|
|
|
|
|
|
|
|
//#define ENCODER_OPTIMIZE_INTERRUPTS //Only when using pin2/3 (or 20/21 on mega)
|
|
|
|
Encoder ENCODER[NUM_ENCODER] = {Encoder(ENC_R_PIN_B, ENC_R_PIN_A), Encoder(ENC_L_PIN_B, ENC_L_PIN_A)};
|
|
|
|
|
|
|
|
long g_LCDML_CONTROL_button_press_time[NUM_ENCODER] = {0, 0};
|
|
|
|
bool g_LCDML_CONTROL_button_prev[NUM_ENCODER] = {HIGH, HIGH};
|
|
|
|
uint8_t g_LCDML_CONTROL_prev[NUM_ENCODER] = {0, 0};
|
|
|
|
|
|
|
|
#ifdef U8X8_DISPLAY
|
|
|
|
const uint8_t * flipped_scroll_bar[5];
|
|
|
|
|
|
|
|
uint8_t * rotTile(const uint8_t * tile) {
|
|
|
|
uint8_t * newt = new uint8_t[8];
|
|
|
|
for (int x = 0; x < 8; x++) {
|
|
|
|
uint8_t newb = 0;
|
|
|
|
for (int y = 0 ; y < 8; y++) {
|
|
|
|
newb |= (tile[y] << x) & 0x80;
|
|
|
|
newb >>= 1;
|
|
|
|
}
|
|
|
|
newt[x] = newb;
|
|
|
|
}
|
|
|
|
return newt;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void setup_ui(void) {
|
|
|
|
// LCD Begin
|
|
|
|
#ifdef I2C_DISPLAY
|
|
|
|
lcd.init();
|
|
|
|
lcd.backlight();
|
|
|
|
lcd.clear();
|
|
|
|
lcd.blink_off();
|
|
|
|
lcd.cursor_off();
|
|
|
|
lcd.backlight();
|
|
|
|
#else
|
|
|
|
lcd.begin();
|
|
|
|
lcd.clear();
|
|
|
|
lcd.setFont(u8x8_font_amstrad_cpc_extended_f);
|
|
|
|
#endif
|
|
|
|
lcd.setCursor(1, 0);
|
|
|
|
lcd.print(F("MicroDexed"));
|
|
|
|
lcd.setCursor(0, 1);
|
|
|
|
lcd.print(F("(c)parasiTstudio"));
|
|
|
|
|
|
|
|
#ifdef I2C_DISPLAY
|
|
|
|
// set special chars for scrollbar
|
|
|
|
lcd.createChar(0, (uint8_t*)scroll_bar[0]);
|
|
|
|
lcd.createChar(1, (uint8_t*)scroll_bar[1]);
|
|
|
|
lcd.createChar(2, (uint8_t*)scroll_bar[2]);
|
|
|
|
lcd.createChar(3, (uint8_t*)scroll_bar[3]);
|
|
|
|
lcd.createChar(4, (uint8_t*)scroll_bar[4]);
|
|
|
|
#else
|
|
|
|
for (int x = 0; x < 5; x++) {
|
|
|
|
flipped_scroll_bar[x] = rotTile(scroll_bar[x]);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// LCDMenuLib Setup
|
|
|
|
LCDML_setup(_LCDML_DISP_cnt);
|
|
|
|
// Enable Menu Rollover
|
|
|
|
//LCDML.MENU_enRollover();
|
|
|
|
// Enable Screensaver (screensaver menu function, time to activate in ms)
|
|
|
|
//LCDML.SCREEN_enable(UI_func_voice_selection, VOICE_SELECTION_MS); // set to 10 seconds
|
|
|
|
}
|
|
|
|
|
|
|
|
void lcdml_menu_control(void)
|
|
|
|
{
|
|
|
|
// If something must init, put in in the setup condition
|
|
|
|
if (LCDML.BT_setup())
|
|
|
|
{
|
|
|
|
pinMode(BUT_R_PIN, INPUT_PULLUP);
|
|
|
|
pinMode(BUT_L_PIN, INPUT_PULLUP);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (back_from_volume > BACK_FROM_VOLUME_MS && menu_state == MENU_VOLUME)
|
|
|
|
{
|
|
|
|
UI_func_voice_selection(0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Volatile Variable
|
|
|
|
long g_LCDML_CONTROL_Encoder_position[NUM_ENCODER] = {ENCODER[ENC_R].read(), ENCODER[ENC_L].read()};
|
|
|
|
bool button[NUM_ENCODER] = {digitalRead(BUT_R_PIN), digitalRead(BUT_L_PIN)};
|
|
|
|
|
|
|
|
/************************************************************************************
|
|
|
|
Basic encoder handlying (from LCDMenuLib2
|
|
|
|
************************************************************************************/
|
|
|
|
// RIGHT
|
|
|
|
if (g_LCDML_CONTROL_Encoder_position[ENC_R] <= -3)
|
|
|
|
{
|
|
|
|
if (!button[ENC_R])
|
|
|
|
{
|
|
|
|
LCDML.BT_left();
|
|
|
|
g_LCDML_CONTROL_button_prev[ENC_R] = LOW;
|
|
|
|
g_LCDML_CONTROL_button_press_time[ENC_R] = -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
encoder_right_up();
|
|
|
|
}
|
|
|
|
ENCODER[ENC_R].write(g_LCDML_CONTROL_Encoder_position[ENC_R] + 4);
|
|
|
|
}
|
|
|
|
else if (g_LCDML_CONTROL_Encoder_position[ENC_R] >= 3)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (!button[ENC_R])
|
|
|
|
{
|
|
|
|
LCDML.BT_right();
|
|
|
|
g_LCDML_CONTROL_button_prev[ENC_R] = LOW;
|
|
|
|
g_LCDML_CONTROL_button_press_time[ENC_R] = -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
encoder_right_down();
|
|
|
|
}
|
|
|
|
ENCODER[ENC_R].write(g_LCDML_CONTROL_Encoder_position[ENC_R] - 4);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!button[ENC_R] && g_LCDML_CONTROL_button_prev[ENC_R]) //falling edge, button[ENC_R] pressed
|
|
|
|
{
|
|
|
|
g_LCDML_CONTROL_button_prev[ENC_R] = LOW;
|
|
|
|
g_LCDML_CONTROL_button_press_time[ENC_R] = millis();
|
|
|
|
}
|
|
|
|
else if (button[ENC_R] && !g_LCDML_CONTROL_button_prev[ENC_R]) //rising edge, button[ENC_R] not active
|
|
|
|
{
|
|
|
|
g_LCDML_CONTROL_button_prev[ENC_R] = HIGH;
|
|
|
|
|
|
|
|
if (g_LCDML_CONTROL_button_press_time[ENC_R] < 0)
|
|
|
|
{
|
|
|
|
g_LCDML_CONTROL_button_press_time[ENC_R] = millis();
|
|
|
|
//Reset for left right action
|
|
|
|
}
|
|
|
|
else if ((millis() - g_LCDML_CONTROL_button_press_time[ENC_R]) >= g_LCDML_CONTROL_button_long_press)
|
|
|
|
{
|
|
|
|
encoder_right_button_long();
|
|
|
|
}
|
|
|
|
else if ((millis() - g_LCDML_CONTROL_button_press_time[ENC_R]) >= g_LCDML_CONTROL_button_short_press)
|
|
|
|
{
|
|
|
|
encoder_right_button_short();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// LEFT
|
|
|
|
if (g_LCDML_CONTROL_Encoder_position[ENC_L] <= -3)
|
|
|
|
{
|
|
|
|
if (!button[ENC_L])
|
|
|
|
{
|
|
|
|
//LCDML.BT_left();
|
|
|
|
g_LCDML_CONTROL_button_prev[ENC_L] = LOW;
|
|
|
|
g_LCDML_CONTROL_button_press_time[ENC_L] = -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
encoder_left_up();
|
|
|
|
}
|
|
|
|
ENCODER[ENC_L].write(g_LCDML_CONTROL_Encoder_position[ENC_L] + 4);
|
|
|
|
}
|
|
|
|
else if (g_LCDML_CONTROL_Encoder_position[ENC_L] >= 3)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (!button[ENC_L])
|
|
|
|
{
|
|
|
|
//LCDML.BT_right();
|
|
|
|
g_LCDML_CONTROL_button_prev[ENC_L] = LOW;
|
|
|
|
g_LCDML_CONTROL_button_press_time[ENC_L] = -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
encoder_left_down();
|
|
|
|
}
|
|
|
|
ENCODER[ENC_L].write(g_LCDML_CONTROL_Encoder_position[ENC_L] - 4);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!button[ENC_L] && g_LCDML_CONTROL_button_prev[ENC_L]) //falling edge, button[ENC_L] pressed
|
|
|
|
{
|
|
|
|
g_LCDML_CONTROL_button_prev[ENC_L] = LOW;
|
|
|
|
g_LCDML_CONTROL_button_press_time[ENC_L] = millis();
|
|
|
|
}
|
|
|
|
else if (button[ENC_L] && !g_LCDML_CONTROL_button_prev[ENC_L]) //rising edge, button[ENC_L] not active
|
|
|
|
{
|
|
|
|
g_LCDML_CONTROL_button_prev[ENC_L] = HIGH;
|
|
|
|
|
|
|
|
if (g_LCDML_CONTROL_button_press_time[ENC_L] < 0)
|
|
|
|
{
|
|
|
|
g_LCDML_CONTROL_button_press_time[ENC_L] = millis();
|
|
|
|
//Reset for left right action
|
|
|
|
}
|
|
|
|
else if ((millis() - g_LCDML_CONTROL_button_press_time[ENC_L]) >= g_LCDML_CONTROL_button_long_press)
|
|
|
|
{
|
|
|
|
//LCDML.BT_quit();
|
|
|
|
encoder_left_button_long();
|
|
|
|
}
|
|
|
|
else if ((millis() - g_LCDML_CONTROL_button_press_time[ENC_L]) >= g_LCDML_CONTROL_button_short_press)
|
|
|
|
{
|
|
|
|
//LCDML.BT_enter();
|
|
|
|
encoder_left_button_short();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************************
|
|
|
|
RIGHT Encoder functions
|
|
|
|
************************************************************************************/
|
|
|
|
void encoder_right_up(void)
|
|
|
|
{
|
|
|
|
uint8_t instance_id = 0;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_getID() > MENU_ID_OF_INSTANCE_2)
|
|
|
|
instance_id = 1;
|
|
|
|
|
|
|
|
switch (menu_state)
|
|
|
|
{
|
|
|
|
case MENU_EDIT:
|
|
|
|
case MENU_VOLUME:
|
|
|
|
menu_state = MENU_EDIT;
|
|
|
|
LCDML.BT_down();
|
|
|
|
break;
|
|
|
|
case MENU_VOICE:
|
|
|
|
#ifdef DEBUG
|
|
|
|
Serial.println(F("State: MENU_VOICE, Encoder left up"));
|
|
|
|
#endif
|
|
|
|
switch (menu_voice)
|
|
|
|
{
|
|
|
|
case MENU_VOICE_BANK:
|
|
|
|
if (configuration.bank[instance_id] < MAX_BANKS)
|
|
|
|
{
|
|
|
|
configuration.bank[instance_id]++;
|
|
|
|
#ifdef DISPLAY_LCD_SPI
|
|
|
|
change_disp_sd(false);
|
|
|
|
#endif
|
|
|
|
load_sysex(configuration.bank[instance_id], configuration.voice[instance_id]);
|
|
|
|
get_voice_names_from_bank(configuration.bank[instance_id]);
|
|
|
|
#ifdef DISPLAY_LCD_SPI
|
|
|
|
change_disp_sd(true);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case MENU_VOICE_SOUND:
|
|
|
|
if (configuration.voice[instance_id] < MAX_VOICES - 1)
|
|
|
|
configuration.voice[instance_id]++;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (configuration.bank[instance_id] < MAX_BANKS)
|
|
|
|
{
|
|
|
|
configuration.bank[instance_id]++;
|
|
|
|
configuration.voice[instance_id] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#ifdef DISPLAY_LCD_SPI
|
|
|
|
change_disp_sd(false);
|
|
|
|
#endif
|
|
|
|
load_sysex(configuration.bank[instance_id], configuration.voice[instance_id]);
|
|
|
|
get_voice_names_from_bank(configuration.bank[instance_id]);
|
|
|
|
#ifdef DISPLAY_LCD_SPI
|
|
|
|
change_disp_sd(true);
|
|
|
|
#endif
|
|
|
|
eeprom_write();
|
|
|
|
|
|
|
|
}
|
|
|
|
UI_func_voice_selection(0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void encoder_right_down(void)
|
|
|
|
{
|
|
|
|
uint8_t instance_id = 0;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_getID() > MENU_ID_OF_INSTANCE_2)
|
|
|
|
instance_id = 1;
|
|
|
|
|
|
|
|
switch (menu_state)
|
|
|
|
{
|
|
|
|
case MENU_EDIT:
|
|
|
|
case MENU_VOLUME:
|
|
|
|
menu_state = MENU_EDIT;
|
|
|
|
LCDML.BT_up();
|
|
|
|
break;
|
|
|
|
case MENU_VOICE:
|
|
|
|
#ifdef DEBUG
|
|
|
|
Serial.println(F("State: MENU_VOICE, Encoder left down"));
|
|
|
|
#endif
|
|
|
|
switch (menu_voice)
|
|
|
|
{
|
|
|
|
case MENU_VOICE_BANK:
|
|
|
|
if (configuration.bank[instance_id] > 0)
|
|
|
|
{
|
|
|
|
configuration.bank[instance_id]--;
|
|
|
|
#ifdef DISPLAY_LCD_SPI
|
|
|
|
change_disp_sd(false);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
load_sysex(configuration.bank[instance_id], configuration.voice[instance_id]);
|
|
|
|
get_voice_names_from_bank(configuration.bank[instance_id]);
|
|
|
|
#ifdef DISPLAY_LCD_SPI
|
|
|
|
change_disp_sd(true);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case MENU_VOICE_SOUND:
|
|
|
|
if (configuration.voice[instance_id] > 0)
|
|
|
|
configuration.voice[instance_id]--;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (configuration.bank[instance_id] > 0)
|
|
|
|
{
|
|
|
|
configuration.bank[instance_id]--;
|
|
|
|
configuration.voice[instance_id] = 31;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#ifdef DISPLAY_LCD_SPI
|
|
|
|
change_disp_sd(false);
|
|
|
|
#endif
|
|
|
|
load_sysex(configuration.bank[instance_id], configuration.voice[instance_id]);
|
|
|
|
get_voice_names_from_bank(configuration.bank[instance_id]);
|
|
|
|
#ifdef DISPLAY_LCD_SPI
|
|
|
|
change_disp_sd(true);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
eeprom_write();
|
|
|
|
}
|
|
|
|
UI_func_voice_selection(0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void encoder_right_button_long(void)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
|
|
|
Serial.println(F("Encoder right long press"));
|
|
|
|
#endif
|
|
|
|
LCDML.BT_quit();
|
|
|
|
}
|
|
|
|
|
|
|
|
void encoder_right_button_short(void)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
|
|
|
Serial.println(F("Encoder right short press"));
|
|
|
|
#endif
|
|
|
|
if (menu_state == MENU_EDIT)
|
|
|
|
{
|
|
|
|
LCDML.BT_enter();
|
|
|
|
}
|
|
|
|
else if (menu_state == MENU_VOICE)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
|
|
|
Serial.println(F("State: MENU_VOICE, button short press"));
|
|
|
|
#endif
|
|
|
|
if (menu_voice == MENU_VOICE_BANK)
|
|
|
|
menu_voice = MENU_VOICE_SOUND;
|
|
|
|
else
|
|
|
|
menu_voice = MENU_VOICE_BANK;
|
|
|
|
UI_func_voice_selection(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************************
|
|
|
|
LEFT Encoder functions
|
|
|
|
************************************************************************************/
|
|
|
|
void encoder_left_up(void)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
|
|
|
Serial.println(F("Volume +"));
|
|
|
|
#endif
|
|
|
|
if (configuration.vol < VOLUME_MAX)
|
|
|
|
soften_volume.update(soften_volume.value() + (VOLUME_MAX - VOLUME_MIN) / VOLUME_ENC_STEPS, SOFTEN_VALUE_CHANGE_STEPS);
|
|
|
|
else
|
|
|
|
configuration.vol = VOLUME_MAX;
|
|
|
|
|
|
|
|
UI_func_volume(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void encoder_left_down(void)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
|
|
|
Serial.println(F("Volume -"));
|
|
|
|
#endif
|
|
|
|
int8_t tmp = soften_volume.value() - (VOLUME_MAX - VOLUME_MIN) / VOLUME_ENC_STEPS;
|
|
|
|
if (tmp > VOLUME_MIN)
|
|
|
|
soften_volume.update(tmp, SOFTEN_VALUE_CHANGE_STEPS);
|
|
|
|
else
|
|
|
|
configuration.vol = VOLUME_MIN;
|
|
|
|
|
|
|
|
UI_func_volume(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void encoder_left_button_long(void)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
|
|
|
Serial.println(F("Encoder left long press"));
|
|
|
|
#endif
|
|
|
|
if (menu_state == MENU_EDIT)
|
|
|
|
{
|
|
|
|
menu_state = MENU_VOICE;
|
|
|
|
UI_func_voice_selection(0);
|
|
|
|
}
|
|
|
|
else if (menu_state == MENU_VOICE)
|
|
|
|
{
|
|
|
|
menu_state = MENU_EDIT;
|
|
|
|
LCDML.MENU_goRoot();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void encoder_left_button_short(void)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
|
|
|
Serial.println(F("Encoder left short press"));
|
|
|
|
#endif
|
|
|
|
if (menu_state == MENU_EDIT)
|
|
|
|
{
|
|
|
|
//LCDML.FUNC_goBackToMenu();
|
|
|
|
LCDML.BT_quit();
|
|
|
|
}
|
|
|
|
else if (menu_state == MENU_VOICE)
|
|
|
|
{
|
|
|
|
menu_state = MENU_EDIT;
|
|
|
|
LCDML.MENU_goRoot();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
DISPLAY
|
|
|
|
***********************************************************************/
|
|
|
|
void lcdml_menu_clear(void)
|
|
|
|
{
|
|
|
|
lcd.clear();
|
|
|
|
lcd.setCursor(0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void lcdml_menu_display(void)
|
|
|
|
{
|
|
|
|
// update content
|
|
|
|
// ***************
|
|
|
|
if (LCDML.DISP_checkMenuUpdate()) {
|
|
|
|
// clear menu
|
|
|
|
// ***************
|
|
|
|
LCDML.DISP_clear();
|
|
|
|
|
|
|
|
// declaration of some variables
|
|
|
|
// ***************
|
|
|
|
// content variable
|
|
|
|
char content_text[_LCDML_DISP_cols]; // save the content text of every menu element
|
|
|
|
// menu element object
|
|
|
|
LCDMenuLib2_menu *tmp;
|
|
|
|
// some limit values
|
|
|
|
uint8_t i = LCDML.MENU_getScroll();
|
|
|
|
uint8_t maxi = _LCDML_DISP_rows + i;
|
|
|
|
uint8_t n = 0;
|
|
|
|
|
|
|
|
// check if this element has children
|
|
|
|
if ((tmp = LCDML.MENU_getDisplayedObj()) != NULL)
|
|
|
|
{
|
|
|
|
// loop to display lines
|
|
|
|
do
|
|
|
|
{
|
|
|
|
// check if a menu element has a condition and if the condition be true
|
|
|
|
if (tmp->checkCondition())
|
|
|
|
{
|
|
|
|
// check the type off a menu element
|
|
|
|
if (tmp->checkType_menu() == true)
|
|
|
|
{
|
|
|
|
// display normal content
|
|
|
|
LCDML_getContent(content_text, tmp->getID());
|
|
|
|
lcd.setCursor(1, n);
|
|
|
|
lcd.print(content_text);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (tmp->checkType_dynParam()) {
|
|
|
|
tmp->callback(n);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// increment some values
|
|
|
|
i++;
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
// try to go to the next sibling and check the number of displayed rows
|
|
|
|
} while (((tmp = tmp->getSibling(1)) != NULL) && (i < maxi));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.DISP_checkMenuCursorUpdate())
|
|
|
|
{
|
|
|
|
// init vars
|
|
|
|
uint8_t n_max = (LCDML.MENU_getChilds() >= _LCDML_DISP_rows) ? _LCDML_DISP_rows : (LCDML.MENU_getChilds());
|
|
|
|
uint8_t scrollbar_min = 0;
|
|
|
|
uint8_t scrollbar_max = LCDML.MENU_getChilds();
|
|
|
|
uint8_t scrollbar_cur_pos = LCDML.MENU_getCursorPosAbs();
|
|
|
|
uint8_t scroll_pos = ((1.*n_max * _LCDML_DISP_rows) / (scrollbar_max - 1) * scrollbar_cur_pos);
|
|
|
|
|
|
|
|
// display rows
|
|
|
|
for (uint8_t n = 0; n < n_max; n++)
|
|
|
|
{
|
|
|
|
//set cursor
|
|
|
|
lcd.setCursor(0, n);
|
|
|
|
|
|
|
|
//set cursor char
|
|
|
|
if (n == LCDML.MENU_getCursorPos()) {
|
|
|
|
lcd.write(_LCDML_DISP_cfg_cursor);
|
|
|
|
} else {
|
|
|
|
lcd.write(' ');
|
|
|
|
}
|
|
|
|
|
|
|
|
// delete or reset scrollbar
|
|
|
|
if (_LCDML_DISP_cfg_scrollbar == 1) {
|
|
|
|
if (scrollbar_max > n_max) {
|
|
|
|
#ifdef I2C_DISPLAY
|
|
|
|
lcd.setCursor((_LCDML_DISP_cols - 1), n);
|
|
|
|
lcd.write((uint8_t)0);
|
|
|
|
#else
|
|
|
|
lcd.drawTile((_LCDML_DISP_cols - 1), n, 1, flipped_scroll_bar[0]);
|
|
|
|
lcd.setCursor((_LCDML_DISP_cols), n + 1);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
lcd.setCursor((_LCDML_DISP_cols - 1), n);
|
|
|
|
lcd.print(F(" "));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// display scrollbar
|
|
|
|
if (_LCDML_DISP_cfg_scrollbar == 1) {
|
|
|
|
if (scrollbar_max > n_max) {
|
|
|
|
//set scroll position
|
|
|
|
if (scrollbar_cur_pos == scrollbar_min) {
|
|
|
|
// min pos
|
|
|
|
#ifdef I2C_DISPLAY
|
|
|
|
lcd.setCursor((_LCDML_DISP_cols - 1), 0);
|
|
|
|
lcd.write((uint8_t)1);
|
|
|
|
#else
|
|
|
|
lcd.drawTile((_LCDML_DISP_cols - 1), 0, 1, flipped_scroll_bar[1]);
|
|
|
|
lcd.setCursor((_LCDML_DISP_cols), 1);
|
|
|
|
#endif
|
|
|
|
} else if (scrollbar_cur_pos == (scrollbar_max - 1)) {
|
|
|
|
// max pos
|
|
|
|
#ifdef I2C_DISPLAY
|
|
|
|
lcd.setCursor((_LCDML_DISP_cols - 1), (n_max - 1));
|
|
|
|
lcd.write((uint8_t)4);
|
|
|
|
#else
|
|
|
|
lcd.drawTile((_LCDML_DISP_cols - 1), (n_max - 1), 1, flipped_scroll_bar[4]);
|
|
|
|
lcd.setCursor((_LCDML_DISP_cols), (n_max));
|
|
|
|
#endif
|
|
|
|
} else {
|
|
|
|
// between
|
|
|
|
#ifdef I2C_DISPLAY
|
|
|
|
lcd.setCursor((_LCDML_DISP_cols - 1), scroll_pos / n_max);
|
|
|
|
lcd.write((uint8_t)(scroll_pos % n_max) + 1);
|
|
|
|
#else
|
|
|
|
lcd.drawTile((_LCDML_DISP_cols - 1), scroll_pos / n_max, 1, flipped_scroll_bar[(scroll_pos % n_max) + 1]);
|
|
|
|
lcd.setCursor((_LCDML_DISP_cols), (scroll_pos / n_max) + 1);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
MENU
|
|
|
|
***********************************************************************/
|
|
|
|
|
|
|
|
void UI_func_reverb_roomsize(uint8_t param)
|
|
|
|
{
|
|
|
|
#ifdef USE_REVERB
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
{
|
|
|
|
// setup function
|
|
|
|
lcd.setCursor(0, 0);
|
|
|
|
lcd.print(F("Reverb Roomsize"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
{
|
|
|
|
if (LCDML.BT_checkEnter())
|
|
|
|
{
|
|
|
|
LCDML.FUNC_goBackToMenu();
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkDown())
|
|
|
|
{
|
|
|
|
if (configuration.reverb_roomsize < REVERB_ROOMSIZE_MAX)
|
|
|
|
{
|
|
|
|
configuration.reverb_roomsize++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkUp())
|
|
|
|
{
|
|
|
|
if (configuration.reverb_roomsize > REVERB_ROOMSIZE_MIN)
|
|
|
|
{
|
|
|
|
configuration.reverb_roomsize--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lcd.setCursor(0, 1);
|
|
|
|
lcd_display_int(configuration.reverb_roomsize, 3, true, true, false);
|
|
|
|
|
|
|
|
freeverbs1.roomsize(mapfloat(configuration.reverb_roomsize, REVERB_ROOMSIZE_MIN, REVERB_ROOMSIZE_MAX, 0.0, 1.0));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_close()) // ****** STABLE END *********
|
|
|
|
{
|
|
|
|
// you can here reset some global vars or do nothing
|
|
|
|
eeprom_write();
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
UI_function_not_enabled();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_reverb_damping(uint8_t param)
|
|
|
|
{
|
|
|
|
#ifdef USE_REVERB
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
{
|
|
|
|
// setup function
|
|
|
|
lcd.setCursor(0, 0);
|
|
|
|
lcd.print(F("Reverb Damping"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
{
|
|
|
|
if (LCDML.BT_checkEnter())
|
|
|
|
{
|
|
|
|
LCDML.FUNC_goBackToMenu();
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkDown())
|
|
|
|
{
|
|
|
|
if (configuration.reverb_damping < REVERB_DAMPING_MAX)
|
|
|
|
{
|
|
|
|
configuration.reverb_damping++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkUp())
|
|
|
|
{
|
|
|
|
if (configuration.reverb_damping > REVERB_DAMPING_MIN)
|
|
|
|
{
|
|
|
|
configuration.reverb_damping--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lcd.setCursor(0, 1);
|
|
|
|
lcd_display_int(configuration.reverb_damping, 3, true, true, false);
|
|
|
|
|
|
|
|
freeverbs1.damping(mapfloat(configuration.reverb_damping, REVERB_DAMPING_MIN, REVERB_DAMPING_MAX, 0.0, 1.0));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_close()) // ****** STABLE END *********
|
|
|
|
{
|
|
|
|
// you can here reset some global vars or do nothing
|
|
|
|
eeprom_write();
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
UI_function_not_enabled();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_reverb_level(uint8_t param)
|
|
|
|
{
|
|
|
|
#ifdef USE_REVERB
|
|
|
|
uint8_t instance_id = 0;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_getID() > MENU_ID_OF_INSTANCE_2)
|
|
|
|
instance_id = 1;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
{
|
|
|
|
// setup function
|
|
|
|
lcd.setCursor(0, 0);
|
|
|
|
lcd.print(F("Reverb Level"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
{
|
|
|
|
if (LCDML.BT_checkEnter())
|
|
|
|
{
|
|
|
|
LCDML.FUNC_goBackToMenu();
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkDown())
|
|
|
|
{
|
|
|
|
if (configuration.reverb_level[instance_id] < REVERB_LEVEL_MAX)
|
|
|
|
{
|
|
|
|
configuration.reverb_level[instance_id]++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkUp())
|
|
|
|
{
|
|
|
|
if (configuration.reverb_level[instance_id] > REVERB_LEVEL_MIN)
|
|
|
|
{
|
|
|
|
configuration.reverb_level[instance_id]--;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lcd.setCursor(0, 1);
|
|
|
|
lcd_display_int(configuration.reverb_level[instance_id], 3, true, true, false);
|
|
|
|
|
|
|
|
master_mixer_r.gain(REVERB, configuration.reverb_level[instance_id] / 100.0);
|
|
|
|
master_mixer_l.gain(REVERB, configuration.reverb_level[instance_id] / 100.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_close()) // ****** STABLE END *********
|
|
|
|
{
|
|
|
|
// you can here reset some global vars or do nothing
|
|
|
|
eeprom_write();
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
UI_function_not_enabled();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_chorus_frequency(uint8_t param)
|
|
|
|
{
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
{
|
|
|
|
// setup function
|
|
|
|
lcd.setCursor(0, 0);
|
|
|
|
lcd.print(F("Chorus Frequency"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
{
|
|
|
|
if (LCDML.BT_checkEnter())
|
|
|
|
{
|
|
|
|
LCDML.FUNC_goBackToMenu();
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkDown())
|
|
|
|
{
|
|
|
|
if (configuration.chorus_frequency < CHORUS_FREQUENCY_MAX)
|
|
|
|
{
|
|
|
|
configuration.chorus_frequency++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkUp())
|
|
|
|
{
|
|
|
|
if (configuration.chorus_frequency > CHORUS_FREQUENCY_MIN)
|
|
|
|
{
|
|
|
|
configuration.chorus_frequency--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lcd.setCursor(0, 1);
|
|
|
|
lcd_display_float(configuration.chorus_frequency / 10.0, 2, 1, false, true, false);
|
|
|
|
lcd.print(F(" Hz"));
|
|
|
|
|
|
|
|
modulator.frequency(configuration.chorus_frequency / 10.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_close()) // ****** STABLE END *********
|
|
|
|
{
|
|
|
|
// you can here reset some global vars or do nothing
|
|
|
|
eeprom_write();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_chorus_waveform(uint8_t param)
|
|
|
|
{
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
{
|
|
|
|
// setup function
|
|
|
|
lcd.setCursor(0, 0);
|
|
|
|
lcd.print(F("Chorus Waveform"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
{
|
|
|
|
if (LCDML.BT_checkEnter())
|
|
|
|
{
|
|
|
|
LCDML.FUNC_goBackToMenu();
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkDown())
|
|
|
|
{
|
|
|
|
if (configuration.chorus_waveform < CHORUS_WAVEFORM_MAX)
|
|
|
|
{
|
|
|
|
configuration.chorus_waveform++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkUp())
|
|
|
|
{
|
|
|
|
if (configuration.chorus_waveform > CHORUS_WAVEFORM_MIN)
|
|
|
|
{
|
|
|
|
configuration.chorus_waveform--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lcd.setCursor(0, 1);
|
|
|
|
switch (configuration.chorus_waveform)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
modulator.begin(WAVEFORM_TRIANGLE);
|
|
|
|
lcd.print(F("[TRIANGLE]"));
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
modulator.begin(WAVEFORM_SINE);
|
|
|
|
lcd.print(F("[SINE ]"));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
modulator.begin(WAVEFORM_TRIANGLE);
|
|
|
|
lcd.print(F("[TRIANGLE]"));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_close()) // ****** STABLE END *********
|
|
|
|
{
|
|
|
|
// you can here reset some global vars or do nothing
|
|
|
|
eeprom_write();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_chorus_depth(uint8_t param)
|
|
|
|
{
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
{
|
|
|
|
// setup function
|
|
|
|
lcd.setCursor(0, 0);
|
|
|
|
lcd.print(F("Chorus Depth"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
{
|
|
|
|
if (LCDML.BT_checkEnter())
|
|
|
|
{
|
|
|
|
LCDML.FUNC_goBackToMenu();
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkDown())
|
|
|
|
{
|
|
|
|
if (configuration.chorus_depth < CHORUS_DEPTH_MAX)
|
|
|
|
{
|
|
|
|
configuration.chorus_depth++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkUp())
|
|
|
|
{
|
|
|
|
if (configuration.chorus_depth > CHORUS_DEPTH_MIN)
|
|
|
|
{
|
|
|
|
configuration.chorus_depth--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lcd.setCursor(0, 1);
|
|
|
|
lcd_display_int(configuration.chorus_depth, 3, true, true, false);
|
|
|
|
|
|
|
|
modulator.amplitude(configuration.chorus_depth / 100.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_close()) // ****** STABLE END *********
|
|
|
|
{
|
|
|
|
// you can here reset some global vars or do nothing
|
|
|
|
eeprom_write();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_chorus_level(uint8_t param)
|
|
|
|
{
|
|
|
|
uint8_t instance_id = 0;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_getID() > MENU_ID_OF_INSTANCE_2)
|
|
|
|
instance_id = 1;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
{
|
|
|
|
// setup function
|
|
|
|
lcd.setCursor(0, 0);
|
|
|
|
lcd.print(F("Chorus Level"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
{
|
|
|
|
if (LCDML.BT_checkEnter())
|
|
|
|
{
|
|
|
|
LCDML.FUNC_goBackToMenu();
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkDown())
|
|
|
|
{
|
|
|
|
if (configuration.chorus_level[instance_id] < CHORUS_LEVEL_MAX)
|
|
|
|
{
|
|
|
|
configuration.chorus_level[instance_id]++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkUp())
|
|
|
|
{
|
|
|
|
if (configuration.chorus_level[instance_id] > CHORUS_LEVEL_MIN)
|
|
|
|
{
|
|
|
|
configuration.chorus_level[instance_id]--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lcd.setCursor(0, 1);
|
|
|
|
lcd_display_int(configuration.chorus_level[instance_id], 3, true, true, false);
|
|
|
|
|
|
|
|
master_mixer_r.gain(CHORUS, configuration.chorus_level[instance_id] / 100.0);
|
|
|
|
master_mixer_l.gain(CHORUS, configuration.chorus_level[instance_id] / 100.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_close()) // ****** STABLE END *********
|
|
|
|
{
|
|
|
|
// you can here reset some global vars or do nothing
|
|
|
|
eeprom_write();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_delay_time(uint8_t param)
|
|
|
|
{
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
{
|
|
|
|
// setup function
|
|
|
|
lcd.setCursor(0, 0);
|
|
|
|
lcd.print(F("Delay Time"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
{
|
|
|
|
if (LCDML.BT_checkEnter())
|
|
|
|
{
|
|
|
|
LCDML.FUNC_goBackToMenu();
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkDown())
|
|
|
|
{
|
|
|
|
if (configuration.delay_time < DELAY_TIME_MAX / 10)
|
|
|
|
{
|
|
|
|
configuration.delay_time += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkUp())
|
|
|
|
{
|
|
|
|
if (configuration.delay_time > DELAY_TIME_MIN)
|
|
|
|
{
|
|
|
|
configuration.delay_time -= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lcd.setCursor(0, 1);
|
|
|
|
lcd_display_int(configuration.delay_time * 10, 3, true, true, false);
|
|
|
|
|
|
|
|
delay1.delay(0, configuration.delay_time * 10);
|
|
|
|
lcd.print(F(" ms"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_close()) // ****** STABLE END *********
|
|
|
|
{
|
|
|
|
// you can here reset some global vars or do nothing
|
|
|
|
eeprom_write();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_delay_feedback(uint8_t param)
|
|
|
|
{
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
{
|
|
|
|
// setup function
|
|
|
|
lcd.setCursor(0, 0);
|
|
|
|
lcd.print(F("Delay Feedback"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
{
|
|
|
|
if (LCDML.BT_checkEnter())
|
|
|
|
{
|
|
|
|
LCDML.FUNC_goBackToMenu();
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkDown())
|
|
|
|
{
|
|
|
|
if (configuration.delay_feedback < DELAY_FEEDBACK_MAX)
|
|
|
|
{
|
|
|
|
configuration.delay_feedback++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkUp())
|
|
|
|
{
|
|
|
|
if (configuration.delay_feedback > DELAY_FEEDBACK_MIN)
|
|
|
|
{
|
|
|
|
configuration.delay_feedback--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lcd.setCursor(0, 1);
|
|
|
|
lcd_display_int(configuration.delay_feedback, 3, true, true, false);
|
|
|
|
|
|
|
|
delay_fb_mixer.gain(1, configuration.delay_feedback / 100.0 ); // amount of feedback
|
|
|
|
//delay_fb_mixer.gain(0, 1.0 - configuration.delay_feedback / 200.0); // original signal
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_close()) // ****** STABLE END *********
|
|
|
|
{
|
|
|
|
// you can here reset some global vars or do nothing
|
|
|
|
eeprom_write();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_delay_level(uint8_t param)
|
|
|
|
{
|
|
|
|
uint8_t instance_id = 0;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_getID() > MENU_ID_OF_INSTANCE_2)
|
|
|
|
instance_id = 1;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
{
|
|
|
|
// setup function
|
|
|
|
lcd.setCursor(0, 0);
|
|
|
|
lcd.print(F("Delay Level"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
{
|
|
|
|
if (LCDML.BT_checkEnter())
|
|
|
|
{
|
|
|
|
LCDML.FUNC_goBackToMenu();
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkDown())
|
|
|
|
{
|
|
|
|
if (configuration.delay_level[instance_id] < DELAY_LEVEL_MAX)
|
|
|
|
{
|
|
|
|
configuration.delay_level[instance_id]++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkUp())
|
|
|
|
{
|
|
|
|
if (configuration.delay_level[instance_id] > DELAY_LEVEL_MIN)
|
|
|
|
{
|
|
|
|
configuration.delay_level[instance_id]--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lcd.setCursor(0, 1);
|
|
|
|
lcd_display_int(configuration.delay_level[instance_id], 3, true, true, false);
|
|
|
|
|
|
|
|
master_mixer_r.gain(DELAY, configuration.delay_level[instance_id] / 100.0);
|
|
|
|
master_mixer_l.gain(DELAY, configuration.delay_level[instance_id] / 100.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_close()) // ****** STABLE END *********
|
|
|
|
{
|
|
|
|
// you can here reset some global vars or do nothing
|
|
|
|
eeprom_write();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_filter_cutoff(uint8_t param)
|
|
|
|
{
|
|
|
|
uint8_t instance_id = 0;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_getID() > MENU_ID_OF_INSTANCE_2)
|
|
|
|
instance_id = 1;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
{
|
|
|
|
// setup function
|
|
|
|
lcd.setCursor(0, 0);
|
|
|
|
lcd.print(F("Filter Cut-Off"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
{
|
|
|
|
if (LCDML.BT_checkEnter())
|
|
|
|
{
|
|
|
|
LCDML.FUNC_goBackToMenu();
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkDown())
|
|
|
|
{
|
|
|
|
if (configuration.filter_cutoff[instance_id] < FILTER_CUTOFF_MAX)
|
|
|
|
{
|
|
|
|
configuration.filter_cutoff[instance_id]++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkUp())
|
|
|
|
{
|
|
|
|
if (configuration.filter_cutoff[instance_id] > FILTER_CUTOFF_MIN)
|
|
|
|
{
|
|
|
|
configuration.filter_cutoff[instance_id]--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lcd.setCursor(0, 1);
|
|
|
|
lcd_display_int(configuration.filter_cutoff[instance_id], 3, true, true, false);
|
|
|
|
|
|
|
|
MicroDexed[instance_id]->fx.Cutoff = configuration.filter_cutoff[instance_id] / 100.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_close()) // ****** STABLE END *********
|
|
|
|
{
|
|
|
|
// you can here reset some global vars or do nothing
|
|
|
|
eeprom_write();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_filter_resonance(uint8_t param)
|
|
|
|
{
|
|
|
|
uint8_t instance_id = 0;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_getID() > MENU_ID_OF_INSTANCE_2)
|
|
|
|
instance_id = 1;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
{
|
|
|
|
// setup function
|
|
|
|
lcd.setCursor(0, 0);
|
|
|
|
lcd.print(F("Filter Resonance"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
{
|
|
|
|
if (LCDML.BT_checkEnter())
|
|
|
|
{
|
|
|
|
LCDML.FUNC_goBackToMenu();
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkDown())
|
|
|
|
{
|
|
|
|
if (configuration.filter_resonance[instance_id] < FILTER_RESONANCE_MAX)
|
|
|
|
{
|
|
|
|
configuration.filter_resonance[instance_id]++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkUp())
|
|
|
|
{
|
|
|
|
if (configuration.filter_resonance[instance_id] > FILTER_RESONANCE_MIN)
|
|
|
|
{
|
|
|
|
configuration.filter_resonance[instance_id]--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lcd.setCursor(0, 1);
|
|
|
|
lcd_display_int(configuration.filter_resonance[instance_id], 3, true, true, false);
|
|
|
|
|
|
|
|
MicroDexed[instance_id]->fx.Reso = configuration.filter_resonance[instance_id] / 100.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_close()) // ****** STABLE END *********
|
|
|
|
{
|
|
|
|
// you can here reset some global vars or do nothing
|
|
|
|
eeprom_write();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_midi_channel(uint8_t param)
|
|
|
|
{
|
|
|
|
uint8_t instance_id = 0;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_getID() > MENU_ID_OF_INSTANCE_2)
|
|
|
|
instance_id = 1;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
{
|
|
|
|
// setup function
|
|
|
|
lcd.setCursor(0, 0);
|
|
|
|
lcd.print(F("MIDI Channel"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
{
|
|
|
|
if (LCDML.BT_checkEnter())
|
|
|
|
{
|
|
|
|
LCDML.FUNC_goBackToMenu();
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkDown())
|
|
|
|
{
|
|
|
|
if (configuration.midi_channel[instance_id] < MIDI_CHANNEL_MAX)
|
|
|
|
{
|
|
|
|
configuration.midi_channel[instance_id]++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkUp())
|
|
|
|
{
|
|
|
|
if (configuration.midi_channel[instance_id] > MIDI_CHANNEL_MIN)
|
|
|
|
{
|
|
|
|
configuration.midi_channel[instance_id]--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lcd.setCursor(0, 1);
|
|
|
|
|
|
|
|
if (configuration.midi_channel[instance_id] == 0)
|
|
|
|
{
|
|
|
|
lcd.print(F("[OMNI]"));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
lcd_display_int(configuration.midi_channel[instance_id], 4, false, true, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_close()) // ****** STABLE END *********
|
|
|
|
{
|
|
|
|
// you can here reset some global vars or do nothing
|
|
|
|
eeprom_write();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_loudness(uint8_t param)
|
|
|
|
{
|
|
|
|
uint8_t instance_id = 0;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_getID() > MENU_ID_OF_INSTANCE_2)
|
|
|
|
instance_id = 1;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
{
|
|
|
|
// setup function
|
|
|
|
lcd.setCursor(0, 0);
|
|
|
|
lcd.print(F("Loudness"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
{
|
|
|
|
if (LCDML.BT_checkEnter())
|
|
|
|
{
|
|
|
|
LCDML.FUNC_goBackToMenu();
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkDown())
|
|
|
|
{
|
|
|
|
if (configuration.loudness[instance_id] < LOUDNESS_MAX)
|
|
|
|
{
|
|
|
|
configuration.loudness[instance_id]++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkUp())
|
|
|
|
{
|
|
|
|
if (configuration.loudness[instance_id] > LOUDNESS_MIN)
|
|
|
|
{
|
|
|
|
configuration.loudness[instance_id]--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lcd.setCursor(0, 1);
|
|
|
|
lcd_display_int(configuration.loudness[instance_id], 3, true, true, false);
|
|
|
|
|
|
|
|
MicroDexed[instance_id]->fx.Gain = configuration.loudness[instance_id] / 100.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_close()) // ****** STABLE END *********
|
|
|
|
{
|
|
|
|
// you can here reset some global vars or do nothing
|
|
|
|
eeprom_write();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_panorama(uint8_t param)
|
|
|
|
{
|
|
|
|
uint8_t instance_id = 0;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_getID() > MENU_ID_OF_INSTANCE_2)
|
|
|
|
instance_id = 1;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
{
|
|
|
|
// setup function
|
|
|
|
lcd.setCursor(0, 0);
|
|
|
|
lcd.print(F("Panorama"));
|
|
|
|
if (configuration.mono > 0)
|
|
|
|
{
|
|
|
|
lcd.setCursor(0, 1);
|
|
|
|
lcd.print(F("MONO-disabled"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
{
|
|
|
|
if (LCDML.BT_checkEnter())
|
|
|
|
{
|
|
|
|
LCDML.FUNC_goBackToMenu();
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkDown() && configuration.mono == 0)
|
|
|
|
{
|
|
|
|
if (configuration.pan[instance_id] < PANORAMA_MAX)
|
|
|
|
{
|
|
|
|
configuration.pan[instance_id]++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkUp() && configuration.mono == 0)
|
|
|
|
{
|
|
|
|
if (configuration.pan[instance_id] > PANORAMA_MIN)
|
|
|
|
{
|
|
|
|
configuration.pan[instance_id]--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (configuration.mono == 0)
|
|
|
|
{
|
|
|
|
lcd.setCursor(0, 1);
|
|
|
|
lcd_display_int(configuration.pan[instance_id], 2, false, true, true);
|
|
|
|
|
|
|
|
set_volume(configuration.vol, configuration.pan[instance_id], configuration.mono);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_close()) // ****** STABLE END *********
|
|
|
|
{
|
|
|
|
// you can here reset some global vars or do nothing
|
|
|
|
eeprom_write();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_stereo_mono(uint8_t param)
|
|
|
|
{
|
|
|
|
uint8_t instance_id = 0;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_getID() > MENU_ID_OF_INSTANCE_2)
|
|
|
|
instance_id = 1;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
{
|
|
|
|
// setup function
|
|
|
|
lcd.setCursor(0, 0);
|
|
|
|
lcd.print(F("Stereo/Mono"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
{
|
|
|
|
if (LCDML.BT_checkEnter())
|
|
|
|
{
|
|
|
|
LCDML.FUNC_goBackToMenu();
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkDown())
|
|
|
|
{
|
|
|
|
if (configuration.mono < MONO_MAX)
|
|
|
|
{
|
|
|
|
configuration.mono++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkUp())
|
|
|
|
{
|
|
|
|
if (configuration.mono > MONO_MIN)
|
|
|
|
{
|
|
|
|
configuration.mono--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lcd.setCursor(0, 1);
|
|
|
|
switch (configuration.mono)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
lcd.print(F("[STEREO]"));
|
|
|
|
stereomono1.stereo(true);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
lcd.print(F("[MONO ]"));
|
|
|
|
stereomono1.stereo(false);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
lcd.print(F("[MONO-R]"));
|
|
|
|
stereomono1.stereo(false);
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
lcd.print(F("[MONO-L]"));
|
|
|
|
stereomono1.stereo(false);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
set_volume(configuration.vol, configuration.pan[instance_id], configuration.mono);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_close()) // ****** STABLE END *********
|
|
|
|
{
|
|
|
|
// you can here reset some global vars or do nothing
|
|
|
|
eeprom_write();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_polyphony(uint8_t param)
|
|
|
|
{
|
|
|
|
uint8_t instance_id = 0;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_getID() > MENU_ID_OF_INSTANCE_2)
|
|
|
|
instance_id = 1;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
{
|
|
|
|
// setup function
|
|
|
|
lcd.setCursor(0, 0);
|
|
|
|
lcd.print(F("Polyphony"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
{
|
|
|
|
if (LCDML.BT_checkEnter())
|
|
|
|
{
|
|
|
|
LCDML.FUNC_goBackToMenu();
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkDown())
|
|
|
|
{
|
|
|
|
if (configuration.polyphony[instance_id] < POLYPHONY_MAX)
|
|
|
|
{
|
|
|
|
configuration.polyphony[instance_id]++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkUp())
|
|
|
|
{
|
|
|
|
if (configuration.polyphony[instance_id] > POLYPHONY_MIN)
|
|
|
|
{
|
|
|
|
configuration.polyphony[instance_id]--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lcd.setCursor(0, 1);
|
|
|
|
lcd_display_int(configuration.polyphony[instance_id], 2, false, true, false);
|
|
|
|
|
|
|
|
MicroDexed[instance_id]->setMaxNotes(configuration.polyphony[instance_id]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_close()) // ****** STABLE END *********
|
|
|
|
{
|
|
|
|
// you can here reset some global vars or do nothing
|
|
|
|
eeprom_write();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_engine(uint8_t param)
|
|
|
|
{
|
|
|
|
uint8_t instance_id = 0;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_getID() > MENU_ID_OF_INSTANCE_2)
|
|
|
|
instance_id = 1;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
{
|
|
|
|
// setup function
|
|
|
|
lcd.setCursor(0, 0);
|
|
|
|
lcd.print(F("Engine"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
{
|
|
|
|
if (LCDML.BT_checkEnter())
|
|
|
|
{
|
|
|
|
LCDML.FUNC_goBackToMenu();
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkDown())
|
|
|
|
{
|
|
|
|
if (configuration.engine[instance_id] < ENGINE_MAX)
|
|
|
|
{
|
|
|
|
configuration.engine[instance_id]++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkUp())
|
|
|
|
{
|
|
|
|
if (configuration.engine[instance_id] > ENGINE_MIN)
|
|
|
|
{
|
|
|
|
configuration.engine[instance_id]--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lcd.setCursor(0, 1);
|
|
|
|
switch (configuration.engine[instance_id])
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
lcd.print(F("[MODERN]"));
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
lcd.print(F("[MARK 1]"));
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
lcd.print(F("[OPL ]"));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
MicroDexed[instance_id]->setEngineType(configuration.engine[instance_id]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_close()) // ****** STABLE END *********
|
|
|
|
{
|
|
|
|
// you can here reset some global vars or do nothing
|
|
|
|
eeprom_write();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_mono_poly(uint8_t param)
|
|
|
|
{
|
|
|
|
uint8_t instance_id = 0;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_getID() > MENU_ID_OF_INSTANCE_2)
|
|
|
|
instance_id = 1;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
{
|
|
|
|
// setup function
|
|
|
|
lcd.setCursor(0, 0);
|
|
|
|
lcd.print(F("Mono/Polyphonic"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
{
|
|
|
|
if (LCDML.BT_checkEnter())
|
|
|
|
{
|
|
|
|
LCDML.FUNC_goBackToMenu();
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkDown())
|
|
|
|
{
|
|
|
|
if (configuration.monopoly[instance_id] < MONOPOLY_MAX)
|
|
|
|
{
|
|
|
|
configuration.monopoly[instance_id]++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkUp())
|
|
|
|
{
|
|
|
|
if (configuration.monopoly[instance_id] > MONOPOLY_MIN)
|
|
|
|
{
|
|
|
|
configuration.monopoly[instance_id]--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lcd.setCursor(0, 1);
|
|
|
|
switch (configuration.monopoly[instance_id])
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
lcd.print(F("[MONOPHONIC]"));
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
lcd.print(F("[POLYPHONIC]"));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
MicroDexed[instance_id]->setMonoMode(configuration.monopoly[instance_id]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_close()) // ****** STABLE END *********
|
|
|
|
{
|
|
|
|
// you can here reset some global vars or do nothing
|
|
|
|
eeprom_write();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_pb_range(uint8_t param)
|
|
|
|
{
|
|
|
|
uint8_t instance_id = 0;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_getID() > MENU_ID_OF_INSTANCE_2)
|
|
|
|
instance_id = 1;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
{
|
|
|
|
// setup function
|
|
|
|
lcd.setCursor(0, 0);
|
|
|
|
lcd.print(F("PB Range"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
{
|
|
|
|
if (LCDML.BT_checkEnter())
|
|
|
|
{
|
|
|
|
LCDML.FUNC_goBackToMenu();
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkDown())
|
|
|
|
{
|
|
|
|
if (configuration.pb_range[instance_id] < PB_RANGE_MAX)
|
|
|
|
{
|
|
|
|
configuration.pb_range[instance_id]++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkUp())
|
|
|
|
{
|
|
|
|
if (configuration.pb_range[instance_id] > PB_RANGE_MIN)
|
|
|
|
{
|
|
|
|
configuration.pb_range[instance_id]--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lcd.setCursor(0, 1);
|
|
|
|
lcd_display_int(configuration.pb_range[instance_id], 2, false, true, false);
|
|
|
|
|
|
|
|
MicroDexed[instance_id]->setControllers(configuration.pb_range[instance_id], configuration.pb_step[instance_id], configuration.mw_range[instance_id], configuration.mw_assign[instance_id], configuration.fc_range[instance_id], configuration.fc_assign[instance_id], configuration.bc_range[instance_id], configuration.bc_assign[instance_id], configuration.at_range[instance_id], configuration.at_assign[instance_id]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_close()) // ****** STABLE END *********
|
|
|
|
{
|
|
|
|
// you can here reset some global vars or do nothing
|
|
|
|
eeprom_write();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_pb_step(uint8_t param)
|
|
|
|
{
|
|
|
|
uint8_t instance_id = 0;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_getID() > MENU_ID_OF_INSTANCE_2)
|
|
|
|
instance_id = 1;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
{
|
|
|
|
// setup function
|
|
|
|
lcd.setCursor(0, 0);
|
|
|
|
lcd.print(F("PB Step"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
{
|
|
|
|
if (LCDML.BT_checkEnter())
|
|
|
|
{
|
|
|
|
LCDML.FUNC_goBackToMenu();
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkDown())
|
|
|
|
{
|
|
|
|
if (configuration.pb_step[instance_id] < PB_STEP_MAX)
|
|
|
|
{
|
|
|
|
configuration.pb_step[instance_id]++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (LCDML.BT_checkUp())
|
|
|
|
{
|
|
|
|
if (configuration.pb_step[instance_id] > PB_STEP_MIN)
|
|
|
|
{
|
|
|
|
configuration.pb_step[instance_id]--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lcd.setCursor(0, 1);
|
|
|
|
lcd_display_int(configuration.pb_step[instance_id], 2, false, true, false);
|
|
|
|
|
|
|
|
MicroDexed[instance_id]->setControllers(configuration.pb_range[instance_id], configuration.pb_step[instance_id], configuration.mw_range[instance_id], configuration.mw_assign[instance_id], configuration.fc_range[instance_id], configuration.fc_assign[instance_id], configuration.bc_range[instance_id], configuration.bc_assign[instance_id], configuration.at_range[instance_id], configuration.at_assign[instance_id]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_close()) // ****** STABLE END *********
|
|
|
|
{
|
|
|
|
// you can here reset some global vars or do nothing
|
|
|
|
eeprom_write();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_mw_range(uint8_t param)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_mw_step(uint8_t param)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_fc_range(uint8_t param)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_fc_step(uint8_t param)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_at_range(uint8_t param)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_at_step(uint8_t param)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_information(uint8_t param)
|
|
|
|
{
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
{
|
|
|
|
// setup function
|
|
|
|
lcd.setCursor(0, 0);
|
|
|
|
lcd.print(F("MicroDexed"));
|
|
|
|
lcd.setCursor(0, 1);
|
|
|
|
lcd.print(VERSION);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_loop()) // ****** LOOP *********
|
|
|
|
{
|
|
|
|
// loop function, can be run in a loop when LCDML_DISP_triggerMenu(xx) is set
|
|
|
|
// the quit button works in every DISP function without any checks; it starts the loop_end function
|
|
|
|
if (LCDML.BT_checkEnter()) { // check if any button is pressed (enter, up, down, left, right)
|
|
|
|
// LCDML_goToMenu stops a running menu function and goes to the menu
|
|
|
|
LCDML.FUNC_goBackToMenu();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LCDML.FUNC_close()) // ****** STABLE END *********
|
|
|
|
{
|
|
|
|
// you can here reset some global vars or do nothing
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_voice_selection(uint8_t param)
|
|
|
|
{
|
|
|
|
uint8_t instance_id = 0;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_getID() > MENU_ID_OF_INSTANCE_2)
|
|
|
|
instance_id = 1;
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
Serial.println(F("UI_func_voice_selection()"));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
menu_state = MENU_VOICE;
|
|
|
|
|
|
|
|
strip_extension(bank_names[configuration.bank[instance_id]], bank_name);
|
|
|
|
|
|
|
|
//LCDML.DISP_clear();
|
|
|
|
|
|
|
|
// display bank and voice number
|
|
|
|
lcd.show(0, 0, 2, configuration.bank[instance_id]);
|
|
|
|
lcd.show(1, 0, 2, configuration.voice[instance_id] + 1);
|
|
|
|
|
|
|
|
// display names
|
|
|
|
lcd.show(0, 4, 10, bank_name);
|
|
|
|
lcd.show(1, 4, 10, voice_names[configuration.voice[instance_id]]);
|
|
|
|
|
|
|
|
// display selected Dexed instance
|
|
|
|
if (selected_dexed_instance == 1)
|
|
|
|
{
|
|
|
|
#if NUM_DEXED > 1
|
|
|
|
lcd.show(0, 15, 1, "o");
|
|
|
|
#else
|
|
|
|
lcd.show(0, 15, 1, " ");
|
|
|
|
#endif
|
|
|
|
lcd.show(1, 15, 1, "*");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
selected_dexed_instance = 0;
|
|
|
|
lcd.show(0, 15, 1, "*");
|
|
|
|
#if NUM_DEXED > 1
|
|
|
|
lcd.show(1, 15, 1, "o");
|
|
|
|
#else
|
|
|
|
lcd.show(1, 15, 1, " ");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
// display selections
|
|
|
|
switch (menu_voice)
|
|
|
|
{
|
|
|
|
case MENU_VOICE_BANK:
|
|
|
|
lcd.show(0, 2, 2, " [");
|
|
|
|
lcd.show(0, 14, 1, "]");
|
|
|
|
lcd.show(1, 2, 2, " ");
|
|
|
|
lcd.show(1, 14, 1, " ");
|
|
|
|
break;
|
|
|
|
case MENU_VOICE_SOUND:
|
|
|
|
lcd.show(0, 2, 2, " ");
|
|
|
|
lcd.show(0, 14, 1, " ");
|
|
|
|
lcd.show(1, 2, 2, " [");
|
|
|
|
lcd.show(1, 14, 1, "]");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
for (int x = 2; x < LCD_rows; x++) {
|
|
|
|
lcd.show(x, 0, LCD_cols, " ");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_func_volume(uint8_t param)
|
|
|
|
{
|
|
|
|
uint8_t instance_id = 0;
|
|
|
|
|
|
|
|
if (LCDML.FUNC_getID() > MENU_ID_OF_INSTANCE_2)
|
|
|
|
instance_id = 1;
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
Serial.println(F("UI_func_volume()"));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
back_from_volume = 0;
|
|
|
|
|
|
|
|
if (menu_state != MENU_VOLUME)
|
|
|
|
{
|
|
|
|
lcd.show(0, 0, LCD_cols, "Volume:");
|
|
|
|
lcd.show(1, 0, LCD_cols, "[ ]");
|
|
|
|
menu_state = MENU_VOLUME;
|
|
|
|
}
|
|
|
|
|
|
|
|
lcd.setCursor(8, 0);
|
|
|
|
lcd_display_int(configuration.vol, 3, true, false, false);
|
|
|
|
lcd.setCursor(1, 1);
|
|
|
|
for (uint8_t i = 0; i < LCD_cols - 2; i++)
|
|
|
|
{
|
|
|
|
if (i < int(((LCD_cols - 2) * configuration.vol / 100.0) + 0.5))
|
|
|
|
lcd.print(F("*"));
|
|
|
|
else
|
|
|
|
lcd.print(F(" "));
|
|
|
|
}
|
|
|
|
set_volume(configuration.vol, configuration.pan[instance_id], configuration.mono);
|
|
|
|
eeprom_write();
|
|
|
|
}
|
|
|
|
|
|
|
|
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("enabled!"));
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
if (LCDML.FUNC_setup()) // ****** SETUP *********
|
|
|
|
{
|
|
|
|
// setup function
|
|
|
|
lcd.setCursor(0, 0);
|
|
|
|
lcd.print(F("Function not"));
|
|
|
|
lcd.setCursor(0, 1);
|
|
|
|
lcd.print(F("implemented!"));
|
|
|
|
}
|
|
|
|
|
|
|
|
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 lcd_display_int(int16_t var, uint8_t size, bool zeros, bool brackets, bool sign)
|
|
|
|
{
|
|
|
|
int16_t tmp = 0;
|
|
|
|
uint16_t p;
|
|
|
|
bool non_zero_found = false;
|
|
|
|
|
|
|
|
if (size < 1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (brackets == true)
|
|
|
|
lcd.print(F("["));
|
|
|
|
|
|
|
|
if (sign == true)
|
|
|
|
{
|
|
|
|
size++;
|
|
|
|
if (var < 0)
|
|
|
|
{
|
|
|
|
lcd.print(F("-"));
|
|
|
|
var = abs(var);
|
|
|
|
}
|
|
|
|
else if (var > 0)
|
|
|
|
lcd.print(F("+"));
|
|
|
|
else
|
|
|
|
lcd.print(F(" "));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (var == 0 && zeros == false)
|
|
|
|
{
|
|
|
|
for (int8_t i = size - 1 ; i > 0; i--)
|
|
|
|
lcd.print(F(" "));
|
|
|
|
lcd.print(F("0"));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (int8_t i = size - 1 ; i >= 0; i--)
|
|
|
|
{
|
|
|
|
p = int(pow(10, i));
|
|
|
|
tmp = int(var / p);
|
|
|
|
|
|
|
|
if (tmp == 0)
|
|
|
|
{
|
|
|
|
if (zeros == true)
|
|
|
|
lcd.print(F("0"));
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (non_zero_found == true)
|
|
|
|
lcd.print(F("0"));
|
|
|
|
else
|
|
|
|
lcd.print(F(" "));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
non_zero_found = true;
|
|
|
|
lcd.print(tmp);
|
|
|
|
}
|
|
|
|
var -= (tmp * p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (brackets == true)
|
|
|
|
lcd.print(F("]"));
|
|
|
|
}
|
|
|
|
void lcd_display_float(float var, uint8_t size_number, uint8_t size_fraction, bool zeros, bool brackets, bool sign)
|
|
|
|
{
|
|
|
|
float fraction;
|
|
|
|
float number;
|
|
|
|
|
|
|
|
if (size_number < 1 || size_fraction < 1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
fraction = modff(var, &number);
|
|
|
|
|
|
|
|
if (brackets == true)
|
|
|
|
lcd.print(F("["));
|
|
|
|
|
|
|
|
if (int(number) == 0)
|
|
|
|
{
|
|
|
|
if (zeros == true)
|
|
|
|
lcd.print(F("00"));
|
|
|
|
else
|
|
|
|
lcd.print(F(" 0"));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
lcd_display_int(int(number), size_number, zeros, false, sign);
|
|
|
|
lcd.print(F("."));
|
|
|
|
lcd_display_int(round(fraction * pow(10, size_fraction)), size_fraction, true, false, false);
|
|
|
|
|
|
|
|
if (brackets == true)
|
|
|
|
lcd.print(F("]"));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|