// Wipe06(speed,color) function wipe06(s,c){ var n=0; while(n<8){ var x=n; while(x<80){ uart(128,8,1,x,0,x,44,c); x=x+5; } sleep(s); n=n+1; } } // Sample Code uart("\nPC IMAGE 07\n"); function start(){ wipe06(150,0); } setKprs(start);