xxxxxxxxxx
19
/*
Must upload doorbell.mp3
Must include sound library in index.html
*/
function preload() {
song = loadSound('doorbell.mp3');
}
function setup() {
background(234);
}
function draw() {
}
function mouseClicked() {
song.play();
}