19 lines
No EOL
157 B
C
19 lines
No EOL
157 B
C
#include "delay.h"
|
|
#include "main.h"
|
|
#include "display.h"
|
|
|
|
|
|
unsigned int i;
|
|
unsigned int j;
|
|
|
|
int main()
|
|
{
|
|
init();
|
|
clear();
|
|
|
|
while(1)
|
|
{
|
|
draw();
|
|
|
|
}
|
|
} |