xxxxxxxxxx
var myVoice = new p5.Speech();
var mybutton;
var mywords = ["flat white", "latte", "cappuccino", "brewed coffee", "espresso", "hot chocolate", "ice water", "americano"];
var word;
var img
function preload(){
img = loadImage('STBKS.JPG');
}
function setup() {
createCanvas(windowWidth, windowHeight);
background(100);
word = mywords[floor(random(0, mywords.length))];
myVoice.setPitch(random(.01, 2.0));
myVoice.setRate(random(.4, 2.0));
mybutton = createButton('Order');
mybutton.position(width / 2 , height / 2);
mybutton.size(250, 60);
mybutton.style("font-size", '60px');
mybutton.mousePressed(talk);
}
function draw() {
background(img);
}
function talk() {
myVoice.setVoice('Google UK English Male');
myVoice.speak('I would like to have a cup of ' + word);
myVoice.setPitch(random(.01, 2.0));
myVoice.setRate(random(.4, 2.0));
word = mywords[floor(random(0, mywords.length))];
}