Skip to content

Commit

Permalink
most of the bugs and instabilities fixed, so v.1
Browse files Browse the repository at this point in the history
  • Loading branch information
copych authored Jan 31, 2023
1 parent 3aaf34a commit 4018859
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions AcidBanger.ino
Original file line number Diff line number Diff line change
Expand Up @@ -102,15 +102,15 @@ sSynthCCs synth1_ramps[NUM_SYNTH_CCS] = {
//cc cpl def min max reset
{CC_303_RESO, CC_303_CUTOFF, 64, 40, 125, true},
{CC_303_CUTOFF, CC_303_RESO, 20, 5, 120, true},
{CC_303_PAN, 0, 20, 0, 127, true},
{CC_303_PAN, 0, 47, 0, 127, true},
{CC_303_ENVMOD_LVL, 0, 100, 0, 127, false},
{CC_303_WAVEFORM, 0, 0, 0, 64, true},
#ifndef NO_PSRAM
{CC_303_REVERB_SEND,0, 5, 2, 127, true},
#endif
{CC_303_DELAY_SEND, 0, 0, 64, 127, false},
{CC_303_DISTORTION, 0, 0, 2, 127, true},
{CC_303_ACCENT_LVL, 0, 0, 25, 100, false},
{CC_303_ACCENT_LVL, 0, 64, 25, 100, false},
{CC_303_DECAY, 0, 20, 15, 120, true},
{CC_303_ATTACK, 0, 1, 3, 60, true}
};
Expand All @@ -119,15 +119,15 @@ sSynthCCs synth2_ramps[NUM_SYNTH_CCS] = {
//cc cpl def min max reset
{CC_303_RESO, CC_303_CUTOFF, 64, 60, 127, true},
{CC_303_CUTOFF, CC_303_RESO, 20, 0, 120, false},
{CC_303_PAN, 0, 107, 0, 127, true},
{CC_303_PAN, 0, 80, 0, 127, true},
{CC_303_ENVMOD_LVL, 0, 100, 0, 127, false},
{CC_303_WAVEFORM, 0, 127, 64, 127, true},
#ifndef NO_PSRAM
{CC_303_REVERB_SEND,0, 5, 2, 127, true},
#endif
{CC_303_DELAY_SEND, 0, 0, 64, 127, false},
{CC_303_OVERDRIVE, 0, 0, 2, 127, true},
{CC_303_ACCENT_LVL, 0, 0, 25, 100, false},
{CC_303_ACCENT_LVL, 0, 64, 25, 100, false},
{CC_303_DECAY, 0, 20, 15, 120, true},
{CC_303_ATTACK, 0, 1, 3, 60, true}
};
Expand Down
2 changes: 1 addition & 1 deletion config.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define PROG_NAME "ESP32 AcidBox"
#define VERSION "v0.9"
#define VERSION "v1.0"

#define DEBUG_ON // note that debugging eats ticks initially belonging to real-time tasks, so sound output will be spoild in most cases, turn it off for production build
//#define DEBUG_MASTER_OUT // serial monitor plotter will draw the output waveform
Expand Down

0 comments on commit 4018859

Please sign in to comment.