Page 1 of 1

Remote API EQ question

Posted: Thu Aug 29, 2019 1:29 pm
by py2raf
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!!!

Re: Remote API EQ question

Posted: Mon Sep 09, 2019 9:04 pm
by Vincent Burel
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;