Page 1 of 1

[Potato+Macro Buttons] Macro for reverb FX

Posted: Tue Apr 16, 2019 1:15 am
by W01Fi3
Hi, I'm trying to make a macro button that toggles reverb/delay, however I am unable to find the code to toggle special effects, since the documentation, to my knowledge, has not been released. If I wanted to do this, what would I throw into the button?

Re: [Potato+Macro Buttons] Macro for reverb FX

Posted: Tue Apr 16, 2019 8:48 am
by Vincent Burel
for the moment the following new instructions are implemented:

Strip.Reverb 0 to 10 Send Level To Reverb
Strip.Delay 0 to 10 Send Level To Delay
Strip.Fx1 0 to 10 Send Level To External Fx1
Strip.Fx2 0 to 10 Send Level To External Fx2
Strip.PostReverb 0 (off) or 1 (on) Post Reverb button
Strip.PostDelay 0 (off) or 1 (on) Post Delay button
Strip.PostFx1 0 (off) or 1 (on) Post Fx1 button
Strip.PostFx2 0 (off) or 1 (on) Post Fx2 button

Bus.Sel 0 (off) or 1 (on) BUS SEL Button
Bus.ReturnReverb 0 to 10 Reverb return
Bus[i].ReturnDelay 0 to 10 Delay return
Bus[i].ReturnFx1 0 to 10 FX1 return
Bus[i].ReturnFx2 0 to 10 FX2 return

Re: [Potato+Macro Buttons] Macro for reverb FX

Posted: Tue Aug 06, 2019 11:55 am
by mrgusse
I'm not very familiar with creating macros but let's say I want this scenario

I want to add reverb to my microphone, and I want it to be heard in my headset (bus A2) and on Voicemeeter Output Aux (bus B2)
I want to have it as toggle, so I have to click the button a second time to disable it.

how do I set this up in Macros??


-- edit --
how does Post reverb work compared to Reverb?

Re: [Potato+Macro Buttons] Macro for reverb FX

Posted: Wed Sep 11, 2019 9:20 am
by Vincent Burel
simply by using these following instructions

Strip[0].Reverb = 10; //add reverb to your MIC in hardware input #1
Bus[1].ReturnReverb = 10; //Heard in BUS A2
Bus[6].ReturnReverb = 10; //Heard in BUS B2 on Potato

Post Reverb SEND level is related to Strip Slider Level.