Speech Recognition

@dannfelixx you have to write moving or changing stuff inside draw function. read wiki to get more idea.

Put this lines in draw function to render words in sketch.

  if(String(mostrecentword) !== ""){
    text(String(mostrecentword), 20, 20);  
  }
1 Like