This website works better with JavaScript.
Home
Explore
Help
Sign In
pete
/
radio
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
1
Wiki
Activity
Browse Source
Making progress
tags/kitchen
Pete Shadbolt
3 years ago
parent
763a8866e4
commit
296bcca622
1 changed files
with
12 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+12
-3
audio.ck
+ 12
- 3
audio.ck
View File
@@ -1,8 +1,17 @@
SinOsc o => Gain m => dac;
SinOsc o1 => Gain m => dac;
SinOsc o2 => m;
SinOsc o3 => m;
0.5 => m.gain;
0.1 => m.gain;
500 => o1.freq;
800 => o2.freq;
900 => o3.freq;
OscRecv orec;
orec.event("webcam/update, i") @=> OscEvent update;
orec.listen();
update => now;
while (true) {
update => now;
update.getInt() => int i;
<<< i >>>;
}
Write
Preview
Loading…
Cancel
Save