]> www.fi.muni.cz Git - bike-lights.git/blob - lights.c
18eef189e6ca9d3134613a906deedfcf5b661aac
[bike-lights.git] / lights.c
1 #include <avr/io.h>
2 #include <util/delay.h>
3
4 int main(void)
5 {
6     DDRA |= _BV( PA0 );
7     while( 1 ) { 
8         PORTA |=  _BV( PA0 );
9         _delay_ms(2000);
10         PORTA &=~ _BV( PA0 );
11         _delay_ms(2000);
12     }
13 }