Tiny framebuffer for SSD1306 and similar displays.
選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
|
|
void main() {
|
|
printf("const char* symbols[] = {\n");
|
|
for(int c = 32; c < 127; c++) {
|
|
printf(" // %d \"%c\"\n", c, c);
|
|
for(int j=0;j<5;j++){
|
|
printf(" \" \",\n");
|
|
}
|
|
}
|
|
printf("};\n");
|
|
}
|
|
|