After the good feedback of my first Korg Minilogue XD soundpack I decided to prepare another one with 14 more sounds which you can check in the video, most are pads and other ambient patches.
To get the pack just send any tip of 5€ or more and “minilogue vol2” as concept and I’ll send you the pack by e-mail.
This is a small device I created to basically add a Time knob to the Chase Bliss Audio Thermae pedal. Also, some other functions like easy slowmode enable/disable and external audio trigger are added, which make this pedal a little more predictable. Everything is controller via Midi. Click the image title to check the specs.
I recently got my Chase Bliss Blooper pedal and even before receiving it I started building a standalone device that would allow me to trigger momentary effects and anything else that would be nice to have, all through the midi jack, because I prefer to not use the PC most of the times and also this way would allow me to create any specific sequence of commands, like custom intervals or glide option similar to a Thermae. Just imagine adding 3 more pots to this box: time, interval 1, interval 2 for example, to add rhythmic pitch-shifting intervals.
Disclaimer: Build this at your own risk, it may have worked for me but maybe I haven’t connected it the most secure way so keep this in mind.
The arduino code can also be useful to see the necessary midi sequences for the functions I already mentioned to apply them in other controllers.
So my first program adds:
Half speed record: Records a loop of double of the recorded time. Then, it automatically applies half speed in aditive mode so it fits perfectly in time once effect is applied.
Momentary octave down (with or without glide)
Momentary octave up (with or without glide)
Momentary Max stability – Specific delay time from 0ms to 32s
Midi CC messages of my new custom functions:
Custom delay:
Clear loop: CC 7 = 1
Rec: CC 1 = 1
Wait the wanted time
Play: CC 2 = 1
Overdub: CC 3 = 1
Octave up (momentary effect, no glide*):
Press:
Set Octave +1: CC 19 = 109 (or 14 to reverse)
Enable Mod B: CC 31 = 1
Release:
Disable Mod B: CC 31 = 1
Octave down (momentary effect, no glide*):
Press:
Set octave -1: CC 19 = 79 (or 44 to reverse)
Enable Mod B: CC 31 = 1
Release:
Disable Mod B: CC 31 = 1
Max stability (momentary effect):
Press: CC 18 = 127 (max stability)
Release: CC 18 = 0 (no stability)
Double REC time:
1st press (start recording):
Rec: CC 1 = 1
2nd press (stop recording):
Wait the same amount of time that took from 1st press to 2nd.
Stop: CC 4 = 1
Set half speed: CC 19 = 79
Enable Mod B*: CC 31 = 1
Overdub: CC 3 = 1
Wait TWICE the time in step 1.
Stop: CC 4 = 1
Disable Mod B: CC 31 = 1
Play: CC 2 = 1
I suppose the modifier switch of mod A/B are already set in my case but it’s easy to add if necessary. Also I suppose we’re in additive mode to apply the half-speed effect.
The glide option is more tricky to explain, it’s better to check the code. I use mod A smooth speed to make the glide effect and once reached the glide time then disable mod A and enable mod B stepped speed to get a perfect octave.
LiPo battery: I used this because the Arduino board already has a battery connector and the same board also works as a charger, but it can also be powered by microUSB with no problems.
Push buttons or other input components for the interface. I did the most simple interface with push buttons but it would be easily expanded with some pots using ADC converters like the MCP3008 via SPI protocol. I don’t even use pull-up resistors because arduino already allows me to use the INTERNAL_PULLUP in the input pins.
3.5mm output jack, connected to the TX pin of the microcontroller via a 220ohm resistor
Midi Wiring:
Blooper has a TRS connection. For this controller, the Blooper sleeve pin will go to our 3.5mm sleeve, ring with ring and tip is not connected (it is used for additional footswitch). Remember to use the 220ohm resistor from the ring to the microcontroller TX pin.
Feel free to contact me on reddit / youtube if anything is not clear, if you want to share your version or if you have an idea for a useful function even you don’t know how to implement it.
This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.
Strictly Necessary Cookies
Strictly Necessary Cookie should be enabled at all times so that we can save your preferences for cookie settings.
If you disable this cookie, we will not be able to save your preferences. This means that every time you visit this website you will need to enable or disable cookies again.
3rd Party Cookies
This website uses Google Analytics to collect anonymous information such as the number of visitors to the site, and the most popular pages.
Keeping this cookie enabled helps us to improve our website.
Please enable Strictly Necessary Cookies first so that we can save your preferences!