function setup() {
createCanvas(300, 300);
background("pink");
noStroke();
fill("white");
ellipse(150, 150, 100, 150);
rect(150, 150, 100, 150)
}
function draw() {
if (millis() > 2000) {
osc.stop();
noLoop();
}
}