Last active
August 30, 2020 06:17
Blinking The PIC16F877A With MikroC ( https://bteworkshop.blogspot.com/2020/08/blinking-pic16f877a-with-mikroc.html )
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main() { | |
PORTD=0x00; | |
TRISD=0x00; | |
while(1){ | |
PORTD=0xFF; | |
delay_ms(1000); | |
PORTD=0x00; | |
delay_ms(1000); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment