Skip to content

Instantly share code, notes, and snippets.

@jonatas
Created November 24, 2015 01:10
Show Gist options
  • Save jonatas/01f4f948c6a2a5b259d6 to your computer and use it in GitHub Desktop.
Save jonatas/01f4f948c6a2a5b259d6 to your computer and use it in GitHub Desktop.
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