mirror of
https://github.com/RQNG/WouoUI.git
synced 2025-06-17 13:07:54 +00:00
19 lines
214 B
C
19 lines
214 B
C
![]() |
|
||
|
#include "u8g2.h"
|
||
|
#include <stdio.h>
|
||
|
#include "SDL.h"
|
||
|
#include "Arduino.h"
|
||
|
|
||
|
|
||
|
void postLoop();
|
||
|
|
||
|
_Noreturn int main(int argc, char *argv[])
|
||
|
{
|
||
|
setup();
|
||
|
while (1){
|
||
|
loop();
|
||
|
postLoop();
|
||
|
}
|
||
|
}
|
||
|
|