Hello everyone. Sorry for my English. I had Arduino Uno board and I have used it for some time. But one day I tried to blink again. I used this code:
int main(void)
{
DDRB |=(1<<0);
while(1)
{
PORTB |=(1<<0);
_delay_ms(1000);
PORTB |=(0<<0);
_delay_ms(1000);
}
}
But it's not working. Led only lights. I'm tried to use arduino functions. I'm tried to change time. But after it's not working too.
I don't know what is my problem and so I decided to ask about this question. If you want I can send some pics.