找回密码
 立即注册
查看: 30|回复: 0

36.1-LCD1602显示程序,STC8H8K64U实验箱演示程序, STC8H2K32U, STC8H2K12U, STC8H

[复制链接]
  • 打卡等级:以坛为家I
  • 打卡总天数:274
  • 最近打卡:2026-07-21 08:44:27
已绑定手机

292

主题

1027

回帖

3313

积分

超级版主

积分
3313
QQ
发表于 2026-6-29 15:54:29 | 显示全部楼层 |阅读模式
36.1-LCD1602显示程序,STC8H8K64U实验箱演示程序, STC8H2K32U, STC8H2K12U, STC8H
主程序main.C代码如下(汇编版本在附件中):

/*---------------------------------------------------------------------*/
/* --- Web: www.STCAI.com ---------------------------------------------*/
/* --- BBS: www.STCAIMCU.com  -----------------------------------------*/
/* 如果要在程序中使用此代码,请在程序中注明使用了STC的资料及程序            */
/*---------------------------------------------------------------------*/

/*************  功能说明    **************


本例程基于STC8H8K64U为主控芯片的实验箱9进行编写测试,STC8G、STC8H系列芯片可通用参考.

驱动LCD1602字符屏.

显示效果为: LCD显示时间.

第一行显示 ---Clock demo---
第二行显示     12-00-00

下载时, 选择时钟 24MHz (用户可自行修改频率).

******************************************/

#include "stc8h.h"       //包含此头文件后,不需要再包含"reg51.h"头文件
#include "intrins.h"

#define     MAIN_Fosc       24000000L   //定义主时钟

typedef     unsigned char   u8;
typedef     unsigned int    u16;
typedef     unsigned long   u32;

/*************        Pin define        *****************************************************/

sbit        LCD_B7  = P6^7;        //D7 -- Pin 14                LED- -- Pin 16
sbit        LCD_B6  = P6^6;        //D6 -- Pin 13                LED+ -- Pin 15
sbit        LCD_B5  = P6^5;        //D5 -- Pin 12                Vo   -- Pin 3
sbit        LCD_B4  = P6^4;        //D4 -- Pin 11                VDD  -- Pin 2
sbit        LCD_B3  = P6^3;        //D3 -- Pin 10                VSS  -- Pin 1
sbit        LCD_B2  = P6^2;        //D2 -- Pin  9
sbit        LCD_B1  = P6^1;        //D1 -- Pin  8
sbit        LCD_B0  = P6^0;        //D0 -- Pin  7

sbit        LCD_ENA        = P4^4;        //Pin 6
sbit        LCD_RW        = P4^2;        //Pin 5        //LCD_RS   R/W   DB7--DB0        FOUNCTION
sbit        LCD_RS        = P4^5;        //Pin 4        //        0                0          INPUT      write the command to LCD model
                                                                //        0                1     OUTPUT     read BF and AC pointer from LCD model
                                                                //        1                0     INPUT      write the data to LCD  model
                                                                //        1                1     OUTPUT     read the data from LCD model

u8        hour,minute,second;

void RTC(void);
void ClearLine(u8 row);
void Initialize_LCD(void);
void PutString(u8 row, u8 column, u8 *puts);
void DisplayRTC(void);
void delay_ms(u16 ms);
void WriteChar(u8 row, u8 column, u8 dat);

void main(void)
{
    P_SW2 |= 0x80;  //扩展寄存器(XFR)访问使能

    P0M1 = 0x30;   P0M0 = 0x30;   //设置P0.4、P0.5为漏极开路(实验箱加了上拉电阻到3.3V)
    P1M1 = 0x30;   P1M0 = 0x30;   //设置P1.4、P1.5为漏极开路(实验箱加了上拉电阻到3.3V)
    P2M1 = 0x3c;   P2M0 = 0x3c;   //设置P2.2~P2.5为漏极开路(实验箱加了上拉电阻到3.3V)
    P3M1 = 0x50;   P3M0 = 0x50;   //设置P3.4、P3.6为漏极开路(实验箱加了上拉电阻到3.3V)
    P4M1 = 0x00;   P4M0 = 0x00;   //设置P4.2~P4.5为漏极开路(实验箱加了上拉电阻到3.3V)
    P5M1 = 0x0c;   P5M0 = 0x0c;   //设置P5.2、P5.3为漏极开路(实验箱加了上拉电阻到3.3V)
    P6M1 = 0xff;   P6M0 = 0xff;   //设置为漏极开路(实验箱加了上拉电阻到3.3V)
    P7M1 = 0x00;   P7M0 = 0x00;   //设置为准双向口

    Initialize_LCD();
    ClearLine(0);
    ClearLine(1);

    PutString(0,0,"---Clock demo---");
       
    hour   = 12;        //初始化时间值
    minute = 0;
    second = 0;
    DisplayRTC();

    while(1)
    {
        delay_ms(1000);
        RTC();
        DisplayRTC();
    }
}


//========================================================================
// 函数: void delay_ms(u16 ms)
// 描述: 延时函数。
// 参数: ms,要延时的ms数, 这里只支持1~65535ms. 自动适应主时钟.
// 返回: none.
// 版本: VER1.0
// 日期: 2013-4-1
// 备注:
//========================================================================
void delay_ms(u16 ms)
{
     u16 i;
     do{
          i = MAIN_Fosc / 10000;
          while(--i);   //10T per loop
     }while(--ms);
}

//========================================================================
// 函数: void        DisplayRTC(void)
// 描述: 显示时钟函数
// 参数: none.
// 返回: none.
// 版本: VER1.0
// 日期: 2013-4-1
// 备注:
//========================================================================
void        DisplayRTC(void)
{
        if(hour >= 10)        WriteChar(1,4,hour / 10 + '0');
        else                        WriteChar(1,4,' ');
        WriteChar(1,5,hour % 10 +'0');
        WriteChar(1,6,'-');
        WriteChar(1,7,minute / 10+'0');
        WriteChar(1,8,minute % 10+'0');
        WriteChar(1,9,'-');
        WriteChar(1,10,second / 10 +'0');
        WriteChar(1,11,second % 10 +'0');
}

//========================================================================
// 函数: void        RTC(void)
// 描述: RTC演示函数
// 参数: none.
// 返回: none.
// 版本: VER1.0
// 日期: 2013-4-1
// 备注:
//========================================================================
void        RTC(void)
{
        if(++second >= 60)
        {
                second = 0;
                if(++minute >= 60)
                {
                        minute = 0;
                        if(++hour >= 24)        hour = 0;
                }
        }
}

/************* LCD1602相关程序        *****************************************************/
//8位数据访问方式        LCD1602                标准程序        梁工编写        2014-2-21

#define LineLength        16                //16x2

/*
total 2 lines, 16x2= 32
first line address:  0~15
second line address: 64~79

*/

#define C_CLEAR                        0x01                //clear LCD
#define C_HOME                         0x02                //cursor go home
#define C_CUR_L                        0x04                //cursor shift left after input
#define C_RIGHT                        0x05                //picture shift right after input
#define C_CUR_R                        0x06                //cursor shift right after input
#define C_LEFT                         0x07                //picture shift left after input
#define C_OFF                          0x08                //turn off LCD
#define C_ON                           0x0C                //turn on  LCD
#define C_FLASH                        0x0D                //turn on  LCD, flash
#define C_CURSOR                0x0E                //turn on  LCD and cursor
#define C_FLASH_ALL                0x0F                //turn on  LCD and cursor, flash
#define C_CURSOR_LEFT        0x10                //single cursor shift left
#define C_CURSOR_RIGHT        0x10                //single cursor shift right
#define C_PICTURE_LEFT        0x10                //single picture shift left
#define C_PICTURE_RIGHT        0x10                //single picture shift right
#define C_BIT8                        0x30                //set the data is 8 bits
#define C_BIT4                        0x20                //set the data is 4 bits
#define C_L1DOT7                0x30                //8 bits,one line 5*7  dots
#define C_L1DOT10                0x34                //8 bits,one line 5*10 dots
#define C_L2DOT7                0x38                //8 bits,tow lines 5*7 dots
#define C_4bitL2DOT7        0x28                //4 bits,tow lines 5*7 dots
#define C_CGADDRESS0        0x40                //CGRAM address0 (addr=40H+x)
#define C_DDADDRESS0        0x80                //DDRAM address0 (addr=80H+x)

#define LCD_BusData(dat)        P6 = dat


void LCD_DelayNop(void)
{
        _nop_();_nop_();_nop_();
        _nop_();_nop_();_nop_();
        _nop_();_nop_();_nop_();
        _nop_();_nop_();_nop_();
        _nop_();_nop_();_nop_();
}

//========================================================================
// 函数: void CheckBusy(void)
// 描述: 检测忙函数
// 参数: none.
// 返回: none.
// 版本: VER1.0
// 日期: 2013-4-1
// 备注:
//========================================================================
void CheckBusy(void)
{
        u16        i;
        for(i=0; i<5000; i++)        {if(!LCD_B7)        break;}                //check the LCD busy or not. With time out
//        while(LCD_B7);                        //check the LCD busy or not. Without time out
}

//========================================================================
// 函数: void IniSendCMD(u8 cmd)
// 描述: 初始化写命令(不检测忙)
// 参数: cmd: 要写的命令.
// 返回: none.
// 版本: VER1.0
// 日期: 2013-4-1
// 备注:
//========================================================================
void IniSendCMD(u8 cmd)
{
        LCD_RW = 0;
        LCD_BusData(cmd);
        LCD_DelayNop();
        LCD_ENA = 1;
        LCD_DelayNop();
        LCD_ENA = 0;
        LCD_BusData(0xff);
}

//========================================================================
// 函数: void Write_CMD(u8 cmd)
// 描述: 写命令(检测忙)
// 参数: cmd: 要写的命令.
// 返回: none.
// 版本: VER1.0
// 日期: 2013-4-1
// 备注:
//========================================================================
void Write_CMD(u8 cmd)
{
        LCD_RS  = 0;
        LCD_RW = 1;
        LCD_BusData(0xff);
        LCD_DelayNop();
        LCD_ENA = 1;
        CheckBusy();                        //check the LCD busy or not.
        LCD_ENA = 0;
        LCD_RW = 0;
       
        LCD_BusData(cmd);
        LCD_DelayNop();
        LCD_ENA = 1;
        LCD_DelayNop();
        LCD_ENA = 0;
        LCD_BusData(0xff);
}

//========================================================================
// 函数: void Write_DIS_Data(u8 dat)
// 描述: 写显示数据(检测忙)
// 参数: dat: 要写的数据.
// 返回: none.
// 版本: VER1.0
// 日期: 2013-4-1
// 备注:
//========================================================================
void Write_DIS_Data(u8 dat)
{
        LCD_RS = 0;
        LCD_RW = 1;

        LCD_BusData(0xff);
        LCD_DelayNop();
        LCD_ENA = 1;
        CheckBusy();                        //check the LCD busy or not.
        LCD_ENA = 0;
        LCD_RW = 0;
        LCD_RS  = 1;

        LCD_BusData(dat);
        LCD_DelayNop();
        LCD_ENA = 1;
        LCD_DelayNop();
        LCD_ENA = 0;
        LCD_BusData(0xff);
}

//========================================================================
// 函数: void Initialize_LCD(void)
// 描述: 初始化函数
// 参数: none.
// 返回: none.
// 版本: VER1.0
// 日期: 2013-4-1
// 备注:
//========================================================================
void Initialize_LCD(void)
{
        LCD_ENA = 0;
        LCD_RS  = 0;
        LCD_RW = 0;

        delay_ms(100);
        IniSendCMD(C_BIT8);                //set the data is 8 bits

        delay_ms(10);
        Write_CMD(C_L2DOT7);                //tow lines 5*7 dots

        delay_ms(6);
        Write_CMD(C_CLEAR);                //clear LCD RAM
        Write_CMD(C_CUR_R);                //Curror Shift Right
        Write_CMD(C_ON);                //turn on  LCD
}

//========================================================================
// 函数: void ClearLine(u8 row)
// 描述: 清除1行
// 参数: row: 行(0或1)
// 返回: none.
// 版本: VER1.0
// 日期: 2013-4-1
// 备注:
//========================================================================
void ClearLine(u8 row)
{
        u8 i;
        Write_CMD(((row & 1) << 6) | 0x80);
        for(i=0; i<LineLength; i++)        Write_DIS_Data(' ');
}

//========================================================================
// 函数: void WriteChar(u8 row, u8 column, u8 dat)
// 描述: 指定行、列和字符, 写一个字符
// 参数: row: 行(0或1),  column: 第几个字符(0~15),  dat: 要写的字符.
// 返回: none.
// 版本: VER1.0
// 日期: 2013-4-1
// 备注:
//========================================================================
void WriteChar(u8 row, u8 column, u8 dat)
{
        Write_CMD((((row & 1) << 6) + column) | 0x80);
        Write_DIS_Data(dat);
}

//========================================================================
// 函数: void PutString(u8 row, u8 column, u8 *puts)
// 描述: 写一个字符串,指定行、列和字符串首地址
// 参数: row: 行(0或1),  column: 第几个字符(0~15),  puts: 要写的字符串指针.
// 返回: none.
// 版本: VER1.0
// 日期: 2013-4-1
// 备注:
//========================================================================
void PutString(u8 row, u8 column, u8 *puts)
{
        Write_CMD((((row & 1) << 6) + column) | 0x80);
        for ( ;  *puts != 0;  puts++)                //遇到停止符0结束
        {
                Write_DIS_Data(*puts);
                if(++column >= LineLength)        break;
        }
}

//******************** LCD Module END ***************************

36.1-LCD1602显示程序.zip (9.33 KB, 下载次数: 2)
热线19952583534
www.STCAI.com
回复

使用道具 举报 送花

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|手机版|深圳国芯人工智能有限公司 ( 粤ICP备2022108929号-2 )

GMT+8, 2026-7-22 10:20 , Processed in 0.070179 second(s), 43 queries .

Powered by Discuz! X3.5

© 2001-2026 Discuz! Team.

快速回复 返回顶部 返回列表