You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
793 B

String[] controller = {"STOP", "UNSET", "BANK1", "PATTERN"};
void printControllerStatus() {
fill(200);
text("PLAY/STOP:", 10, height-75);
text("REC/OVERDUB/ERASE:", 10, height-55);
text("BANK:", 10, height-35);
text("PATTERN/BPM/SWING:", 10, height-15);
fill(240);
text(controller[0], 180, height-75);
text(controller[1], 180, height-55);
text(controller[2], 180, height-35);
text(controller[3], 180, height-15);
fill(200);
text("PATTERN:", (width/2)+20, height-75);
text("BPM:", (width/2)+20, height-55);
text("SWING:",(width/2)+20, height-35);
fill(240);
text(patternLabel, (width/2)+100, height-75);
text(bpm, (width/2)+100, height-55);
text(swing, (width/2)+100, height-35);
stroke(200);
line(width/2, height-85, width/2, height-15);
}