Skip to content

Instantly share code, notes, and snippets.

@crhallberg
Created January 8, 2017 14:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crhallberg/d2805c0edb142255143877821e3360f9 to your computer and use it in GitHub Desktop.
Save crhallberg/d2805c0edb142255143877821e3360f9 to your computer and use it in GitHub Desktop.
Spike Test
void setup() {
// ...
setTimeout(function() {
bounceSound.amp(.3);
bounceSound.play();
}, 1000);
setTimeout(function() {
bounceSound.amp(.3);
bounceSound.play();
bounceSound.play();
}, 2000);
setTimeout(function() {
bounceSound.amp(.3);
bounceSound.play();
bounceSound.play();
bounceSound.play();
}, 3000);
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment