I wanted to code this but I couldnt. mix it together without clapping

var mic;

function setup() {
  createCanvas(710, 200);


  mic = new p5.AudioIn();

  mic.start();
}

function draw() {
  background(200);
  Random ()

  var vol = mic.getLevel();
  fill(127);
  stroke(0);

Answers

  • edited May 2017

    @blank1000 -- re:

    I wanted to code this but I couldnt. mix it together without clapping

    That isn't a question.

    What do you mean "mix it together without clapping"? Describe what you are trying to do. Now, when you say "you couldn't" -- what isn't working? What errors or bad behavior do you get?

Sign In or Register to comment.