Changing "Drum Main Vol" to bard indicator.

dev
Holger Wirtz 2 years ago
parent 2ff0998085
commit 3409d9229c
  1. 813
      MicroDexed.ino
  2. 2136
      UI.hpp
  3. 7
      config.h
  4. 2
      dexed_sd.cpp

File diff suppressed because it is too large Load Diff

2136
UI.hpp

File diff suppressed because it is too large Load Diff

@ -660,6 +660,10 @@
#define SEQUENCE_CONFIG_DEFAULT 0 #define SEQUENCE_CONFIG_DEFAULT 0
*/ */
#define DRUMS_MAIN_VOL_MIN 0
#define DRUMS_MAIN_VOL_MAX 100
#define DRUMS_MAIN_VOL_DEFAULT 80
#define EQ_1_MIN 15 #define EQ_1_MIN 15
#define EQ_1_MAX 250 #define EQ_1_MAX 250
#define EQ_1_DEFAULT 50 #define EQ_1_DEFAULT 50
@ -944,8 +948,7 @@ enum reverb_mixer_ports {
#ifndef _MAPFLOAT #ifndef _MAPFLOAT
#define _MAPFLOAT #define _MAPFLOAT
inline float mapfloat(float val, float in_min, float in_max, float out_min, float out_max) inline float mapfloat(float val, float in_min, float in_max, float out_min, float out_max) {
{
return (val - in_min) * (out_max - out_min) / (in_max - in_min) + out_min; return (val - in_min) * (out_max - out_min) / (in_max - in_min) + out_min;
} }
#endif #endif

@ -1123,7 +1123,7 @@ bool load_sd_sys_json(void)
{ {
// ... and if: load // ... and if: load
#ifdef DEBUG #ifdef DEBUG
Serial.print(F("Found sys configuration")); Serial.println(F("Found sys configuration"));
#endif #endif
json = SD.open(filename); json = SD.open(filename);
if (json) if (json)

Loading…
Cancel
Save