mirror of
https://github.com/Derisis13/AT-VFD.git
synced 2025-12-06 19:32:49 +01:00
16 lines
153 B
C
16 lines
153 B
C
#define F_CPU 8000000UL
|
|
#include <avr/io.h>
|
|
#include <util/delay.h>
|
|
#include "PT6302.h"
|
|
|
|
|
|
int main ()
|
|
{
|
|
PT6302_startup ();
|
|
|
|
while (1)
|
|
{
|
|
|
|
}
|
|
}
|