Hi there all;
I built a 123 Hz Notch Filter (to filter out a subtone) in a 2P function button, configured like this:
Button ON:
Bus(0).EQ.on=1;
Bus(0).EQ.channel(0).cell(2).on=1;
Bus(0).EQ.channel(0).cell(2).type=1;
Bus(0).EQ.channel(0).cell(2).f=123;
Bus(0).EQ.channel(0).cell(2).gain=0;
Bus(0).EQ.channel(0).cell(2).q=50;
Button OFF:
Bus(0).EQ.channel(0).cell(2).on=0;
It works GREAT, except for the fact... That this settings only affects the LEFT channel.
How can I make this EQ setting to work in all channels?
Thanks!!!
Remote API EQ question
-
- Site Admin
- Posts: 2121
- Joined: Sun Jan 17, 2010 12:01 pm
Re: Remote API EQ question
i guess you may also set the parameter for channel(1)
Bus(0).EQ.channel(1).cell(2).on=1;
Bus(0).EQ.channel(1).cell(2).type=1;
Bus(0).EQ.channel(1).cell(2).f=123;
Bus(0).EQ.channel(1).cell(2).gain=0;
Bus(0).EQ.channel(1).cell(2).q=50;
Bus(0).EQ.channel(1).cell(2).on=1;
Bus(0).EQ.channel(1).cell(2).type=1;
Bus(0).EQ.channel(1).cell(2).f=123;
Bus(0).EQ.channel(1).cell(2).gain=0;
Bus(0).EQ.channel(1).cell(2).q=50;