📄 lcd_cn.c
字号:
// 智林Z213x/4x开发板试验程序
// 真彩液晶试验
// 刘笑然
// 智林测控技术研究所
// www.the0.net
// 2008.3.31
#include "TFT018.h"
int main() {
BacklightOn();
LCD_Init();
LCD_Clear_Screen(Blue);
for(;;) {
Font = 0;
LCD_PutString(10,0,"LPC213x/4x开发板",Cyan,Blue);
LCD_PutString(0,16,"LPC213x/4x Dev Board",Cyan,Blue);
Font = 1;
LCD_PutString(38,46,"Version 2.0",Green,Blue);
Font = 0;
LCD_PutString(10,60,"智林测控技术研究所",Yellow,Blue);
LCD_PutString(30,80,"ZERO Research",Yellow,Blue);
LCD_PutString(36,100,"www.the0.net",Magenta,Blue);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -