20 lines
228 B
C
20 lines
228 B
C
|
|
|
|
#include <avr/io.h>
|
|
#include "timer.h"
|
|
#include "lcd.h"
|
|
#include "rgbyteclock.h"
|
|
|
|
|
|
int main(void)
|
|
{
|
|
|
|
timer_init();
|
|
lcd_init();
|
|
|
|
rgbyteclock();
|
|
// rgbyteclock() should never end, but who knows...
|
|
while (1) { ; }
|
|
|
|
}
|