added file that plays sin wave using rsc3

This commit is contained in:
Mustafa 2014-02-15 16:23:02 -08:00
parent 5c7fe7d54e
commit 4255e19607

17
rsc3-sine-play.rkt Normal file
View file

@ -0,0 +1,17 @@
#lang racket
(require "rsc3/rsc3.rkt")
;; start udp SuperCollider server with: scsynth -u 57110
(with-sc3 (lambda (fd) (send fd (g-new1 1 add-to-tail 0))))
;; play sin wave
(audition (out 0 (mul (sin-osc ar 440 0) 0.1)))
;; reset
; (with-sc3 reset)