textmode

2018-11-11 16:18 更新

 原型:extern void textmode(int mode);
             
 用法:#include <system.h>
 
 功能:设定屏幕模式
 
 说明:请参见UpdateLCD中关于mode的含义。
       textmode会影响屏幕上已有内容的显示。
   
 举例:

     // textmode.c
     
     #include <system.h>
     main()
     {
       int c;
       clrscr();
       textmode(0x00);
       printf("Hello, world!\n");
       getchar();
       
       textmode(0xE0);
       printf("Hi, this is the next mode\n");
       
       getchar();
       return 0;
     }


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号