⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.c

📁 在字符终端显示时钟 fb
💻 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 + -