Home › Forums › Logelloop 6 (English spoken) › Dynamic playback/stretch control of a current Korpus looper › Reply To: Dynamic playback/stretch control of a current Korpus looper
Here’s my temporary solution:
1/ Unplugged midi-in cable from FCB1010, this prevents flooding and midi feedback.
But it seems that there’s something inside LL that does send midi signals out on the macro variable listeners.
In other midi commands configurations there’s a “Note Out” checkbox that prevents this, which I keep unticked.
Probably that’s something you may want to look into.
2/ Following this fix:
– Set macro CC variable listener on CC11
– Set midi macro trigger on CC11
– write macro as DoOnce
DoOnce
Declare int $k_index$ = $Korpus_data1_rank1_Counter_state$
InsertSendMessage fx[$k_index$] 1 HTSSpeed {scale($midiv_cc1$, 0, 127, 100, 1)}
EndDoOnce
I could not get the following to work:
InsertSendMessage fx[$k_index$] 1 HTSSpeed {scale(currentCaseOptionValueFloat(0), 0, 127, 100, 1)}
Are you trying to say that “$currentCaseOptionValueFloat(0)” in a midi-triggered macro should return the original midi CC value?
I haven’t found much documentation on using this. But it returns 0.0 float.