I'm new here and new to Lemur. Up to this point, I used TouchOSC to control Ableton Live. I'm having an issue translating a solution over to the Lemur environment. Let me explain:
Ableton's Auto Filter uses a strange method of MIDI mapping the filter type
- LP = CC [x] value range 0-21
HP = CC [x] value range 22-63
BP = CC [x] value range 64-105
NOTCH = CC [x] value range 106-127
I used OSCulator to divide the entire 0-127 into those 4 sections so that I was able to have a Multi-Toggle that would select the 4 different filter types radio-button style.
I'm now trying to do this with the Lemur app and I've hit a roadblock. So far I have used the Switches object set up with 1 column and 4 rows acting as radio buttons. I then label them using
Code: Select all
setattribute(FilterType,'labels',{'LP','HP','BP','NT'});
The issue
But the issue is that I can either choose to send different CC's or CC's on different MIDI channels out each of the 4 'buttons', but I don't know how to send a different portion of the values 0-127 for the same CC with each button.
Can someone offer a solution?
Thanks in advance!