Create library for managing LED binary display

This commit is contained in:
2020-11-07 22:45:11 +01:00
parent fde78d96d2
commit f9deb66109
3 changed files with 131 additions and 0 deletions

19
main.c Normal file
View File

@@ -0,0 +1,19 @@
#include <avr/io.h>
#include <avr/interrupt.h>
#include "led.h"
int main()
{
led_init();
sei();
led_hour = 0;
led_minute = 0;
led_second = 0;
while(1)
{
}
}