Edit your blink1.bas file to include just this. Save and recompile.
Code:loop: High 0 ' Turn on LED connected to PORTB.0 Pause 500 ' Delay for .5 seconds Low 0 ' Turn off LED connected to PORTB.0 Pause 500 ' Delay for .5 seconds Goto loop ' Go back to loop and blink LED forever End
Bookmarks