void setup() { size(320, 480); frameRate(1); } void draw() { String s = ""; s+= (online)?"online":"not online"; background(#444444); text(s,10, 100); }