*** empty log message ***
[chuck-blob.git] / exile / v1 / examples / net_send.ck
blob3dc372d25b804ac8d983b46ad9d9c61e814e5457
1 // net_send.ck
2 // audio over UDP
3 // see net_recv.ck and net_relay.ck
5 // set up the patch - blackhole is for driving the netout
6 sinosc s => netout n => blackhole;
7 // set the oscillator frequency
8 220.0 => s.freq;
9 // replace the following with the destination
10 "127.0.0.1" => n.addr => stdout;
12 // infinite time loop
13 while( true ) { 100::ms => now; }