Files
AT-VFD/main.c
Derisis13 69c4eb43e0 * feature: Resetting the VFD works
* optimisation: made the code leaner
2022-03-02 20:56:23 +01:00

14 lines
150 B
C

#define F_CPU 8000000UL
#include <avr/io.h>
#include <util/delay.h>
#include "PT6302.h"
int main ()
{
PT6302_startup();
while (1)
{
}
}