By default, SuperCollider has 1024 buses for audio signals and 16,384 for control signals. The buses, which are items in an array, are what SuperCollider uses to represent audio and control rate data.
////////////////////////////////////////////////////////////////////////////////////////////////////
Use an Out ugen at the audio rate to put data into an audio bus.
A SynthDef browser
shows 1 channel of output on channel 0.
Send an .ar message to an In ugen to get data from an audio bus.
Use In.kr
and Out.kr
to read from or write to control buses.
////////////////////////////////////////////////////////////////////////////////////////////////////
For additional information, see the Out, In, and Bus files in the SuperCollider help system.
////////////////////////////////////////////////////////////////////////////////////////////////////
go to 10_Controls