blob: 12859c3994462fce6123d38f37f4c2ff5b7ee4b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#define FBGL_IMPLEMENTATION
#include "fbgl.h"
#include <stdio.h>
int main(void)
{
fbgl_t fb;
fbgl_init(NULL, &fb);
fbgl_set_bg(&fb, 0x00FF0000);
while (1) {
}
return 0;
}
|