# test program ; print 'starting demo'; peek 3+32, c ; # look at pinb ; while c=255 { print 'press button'; delay(200); peek 3+32, c ; } ; poke 7+32, 255 ; for i= 0 to 10 { peek 3+32,c ; poke 8+32,i ; print 'i=',i ; for j=10 to 13 {print 'i-j=', i-j;}; if c=255 {print 'press button';}; if c<255 { print 'button pushed'; delay(500); if c=254 {print 'button0';}; } else { print 'no button' ; }; delay(500); }; print 'done' ; end; @