String[] controller = {"STOP", "UNSET", "BANK", "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); }