Microcontroller › PIC › LED IS NOT BLINKING › void main(){
February 14, 2013 at 7:02 am
#9128
Participant
void main()
{
TRISB=0x00;
while(1)
{
PORTB=0x00;
delay_ms(100);
PORTB=0xFF;//its a 8 bit microcntroller
delay_ms(100);
}
}
still u cant find blinking led increase the value of delay and check.
All the best