📄 main.c
字号:
#include <stdio.h>#include <time.h>#include "fb.h"extern int max_text_row;int main (){ time_t now; char *buf; fb_color_t color; fb_open(); color.r = 255; color.g = 100; color.b = 100; color.t = 0; fb_set_text_color(&color); while (1) { now = time(NULL); buf = ctime(&now); buf = strchr(buf, ':') - 2; buf[8] = '\0'; fb_puts(max_text_row-9, 0, buf); usleep(50); } fb_close(); return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -