Hi fellow Tidal Cyclists,
I’ve read as much as possible on that topic but still have a few questions.
Goal is simple : sending MIDI CC parameters changes from Tidal Cycles to external synths / other software.
I’ve used this tutorial : https://blog.tidalcycles.org/superdirt-midi/ and it all works as expected (thanks again Mike !), except from the sine
bit : can’t make it work.
It seems that Tidal’s been updated here : a recent post (How to send an on/off midi message) by @yaxu got my attention.
-
As explained in the relatively old blog article :
d1 $ ccv "0 127" # ccn 33 # s "midi"
-
The other way :
d1 $ cc "33:0 33:127" # s "midi"
Both work.
- is great to easily write complex CC value patterns (or to re-use external pattern I suppose)
- is terser and allows to combine various CC param within the same sequence :
d1 $ cc "33:0 34:127 35:64" # s "midi"
for instance will work as expected
I’m trying various things that don’t work with 2. though, such as (pardon the very clumsy syntax, but I suppose you’ll get where I’m aiming it) :
d1 $ cc "33:[0 64 0 127]" # s "midi"
d1 $ cc "33:pat" #s midi
Is anything even vaguely similar even possible ?
Another question : how would you code the smoothest CC fade up, from 0 to 127 ?
Thanks a billion !
Best,
n.