This is a cool project, sortof a little csound language for electribe2. ❤️
I'm trying to get this to work on my es2 (currently I can change the pattern number using elecmidi but the read, see testoutput below).
some ideas:
$ elecmidi
env-var ELECTRIBE2 found ('/dev/midi2:0')
starting interactive prompt
elecmidi>
elecmidi> ls
example1.txt example2.txt template.txt idea.mid
elecmidi> import template.txt
elecmidi> lfo 1 oscillator sin 4 3 5 # apply lfo on oscillator-param between 3..5 with 4hz sinewave
elecmidi> lfo 1 ifx sin 4 2 3 # apply lfo on IFX-param between 2..3 with 4hz sinewave
elecmidi> import idea_v1.mid
elecmidi> read
elecmidi> export idea_v2.mid
testoutput
$ cat test1.txt
#selects pattern 1 (The pattern is only modified in memory. In order to save it permanently is necessary to pulse the "write" button)
goto 6
wait 1
stop
$ cat test1.txt | ./elecmidi
# works ..the electribe2s changed it pattern to 6
$ cat test1.txt
#selects pattern 1 (The pattern is only modified in memory. In order to save it permanently is necessary to pulse the "write" button)
goto 6
read # <----------------- adding `read`
wait 1
stop
$ cat test1.txt | ./elecmidi
error receiving data 0
ps. this was compiled with:
int channel=1 // I've also tried 0
int sampler=1; //0 synth 1 sampler
This is a cool project, sortof a little csound language for electribe2. ❤️
I'm trying to get this to work on my es2 (currently I can change the pattern number using elecmidi but the
read, see testoutput below).some ideas:
testoutput
ps. this was compiled with: