Fixed EP default tuning.

dev
Holger Wirtz 2 years ago
parent 97aeb8de32
commit eefc261c42
  1. 4
      UI.hpp
  2. 6
      config.h

@ -2286,7 +2286,7 @@ void UI_func_epiano_tune(uint8_t param) {
encoderDir[ENC_R].reset(); encoderDir[ENC_R].reset();
lcd_special_chars(METERBAR); lcd_special_chars(METERBAR);
display_meter_int("EP Tune", configuration.epiano.tune, 1.0, -100.0, EP_TUNE_MIN, EP_TUNE_MAX, 3, false, true, true); display_bar_int("EP Tune", configuration.epiano.tune, 1.0, EP_TUNE_MIN, EP_TUNE_MAX, 3, false, true, true);
} }
if (LCDML.FUNC_loop()) // ****** LOOP ********* if (LCDML.FUNC_loop()) // ****** LOOP *********
@ -2301,7 +2301,7 @@ void UI_func_epiano_tune(uint8_t param) {
} }
} }
display_meter_int("EP Tune", configuration.epiano.tune, 1.0, -100.0, EP_TUNE_MIN, EP_TUNE_MAX, 3, false, true, false); display_bar_int("EP Tune", configuration.epiano.tune, 1.0, EP_TUNE_MIN, EP_TUNE_MAX, 3, false, true, false);
ep.setTune(mapfloat(configuration.epiano.tune, EP_TUNE_MIN, EP_TUNE_MAX, 0.0, 1.0)); ep.setTune(mapfloat(configuration.epiano.tune, EP_TUNE_MIN, EP_TUNE_MAX, 0.0, 1.0));
} }

@ -649,9 +649,9 @@
#define EP_POLYPHONY_MAX NUM_EPIANO_VOICES #define EP_POLYPHONY_MAX NUM_EPIANO_VOICES
#define EP_POLYPHONY_DEFAULT NUM_EPIANO_VOICES #define EP_POLYPHONY_DEFAULT NUM_EPIANO_VOICES
#define EP_TUNE_MIN 1 #define EP_TUNE_MIN 0
#define EP_TUNE_MAX 199 #define EP_TUNE_MAX 100
#define EP_TUNE_DEFAULT 100 #define EP_TUNE_DEFAULT 0
#define EP_DETUNE_MIN 0 #define EP_DETUNE_MIN 0
#define EP_DETUNE_MAX 100 #define EP_DETUNE_MAX 100

Loading…
Cancel
Save