' Name : blink8x.pbp ' Compiler : PICBASIC PRO Compiler 2.60 ' Assembler : PM or MPASM ' Target PIC : 40-pin 16F887 ' Hardware : Lab-X1 ' Oscillator : 4MHz external crystal ' Keywords : BLINK, CHASE, SHIFT, <<, LED, FOR ' Description : PICBASIC PRO program to blink all the LEDs connected to PORTD ANSEL = %00000000 ' Make AN0-AN7 digital ANSELH= %00000000 ' Make AN8-AN13 digital i Var Byte ' Define loop variable LEDS Var PORTD ' Alias PORTD to LEDS TRISD = %00000000 ' Set PORTD to all output mainloop: LEDS = 1 ' First LED on Pause 500 ' Delay for .5 seconds For i = 1 To 7 ' Go through For..Next loop 7 times LEDS = LEDS << 1 ' Shift on LED one to left Pause 500 ' Delay for .5 seconds Next i Goto mainloop ' Go back to mainloop and blink LED forever End