Created
November 24, 2015 01:10
-
-
Save jonatas/01f4f948c6a2a5b259d6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var sin = T("sin").play(); | |
var frequency = 100; | |
setInterval(function(){ | |
sin.set({freq:frequency}); | |
frequency += 100; | |
sin.play() | |
console.log(frequency); | |
},500) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment