; === Hello18X.bas ========================== ; This program runs on the SIP-18 board. ; It blinks the LED on the serout line. ; ; Be sure the shorting jumper is installed ; on the two pins to the right of the ; 3-pin header, or the LED won't light! ; === Variables === symbol index = b0 ; === Directives === '#com2 #no_data #picaxe 18X ; === Begin Main Program ==================== do for index = 1 to 255 ; blink the LED sertxd (0) next index wait 1 ; pause a little loop