//jleblanc 3.19.06 //An example of how to turn a bunch of bytes into a string and display them //really, there must be a better way. //VARIABLES NEEDED////////////////////////// String[] stringhold = new String[1]; String displayString; byte[] bytehold = new byte[10]; //////////////////////////////////////////// PFont font; void setup() { size(200,200); background(0); fill(255); font = loadFont("ArialMT-24.vlw"); textFont(font); //CODE TO DO THIS/////////////////////////////////// //initialize msg stringhold[0]=""; //load bytehold for(int i=0; i