yes, the capelet is on top of the bela board. So how does csound get acess to the capelet audio ouputs? I assume it is the same way as the stereo outs from the bela board.
Here´s the code I used:
<CsoundSynthesizer>
<CsOptions>
-d -odac -iadc
</CsOptions>
<CsInstruments>
ksmps = 32
nchnls = 8
0dbfs = 1
instr 1
if1 = 100
indx init 1
incr = 1
imax = nchnls
iamp1 = -3
loop:
iamp = db(iamp1-indx)
ifreq = if1 * indx
ichn = indx
schedule 2, 0, p3, iamp, ifreq, ichn
loop_le indx, incr, imax, loop
endin
instr 2
print p4, p5, p6
asine poscil p4, p5
outch p6, asine
endin
</CsInstruments>
<CsScore>
i1 0 86400
</CsScore>
</CsoundSynthesizer>