rgbyteclock-code/main.c
2014-03-01 03:50:09 +01:00

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) { ; }
}