xxxxxxxxxx
21
//Enable mic input and visualize the level of the mic with the size of an ellipse. Change the background color to a new random color if the level exceeds a certain amount. Consult the documentation for the p5.AudioIn() mic objects.
let mic;
function setup() {
createCanvas(400, 400);
mic = new p5.AudioIn();
mic.start();
}
function draw() {
background(220);
let level = mic.getLevel();
console.log(level);
let size = map(level, 0, 0.1, 0, 200);
if (level > 0.05) {
background(random(255));
}
ellipse(width / 2, height / 2, size, size);
}