【STC15 学习笔记】Proteus仿真
【Proteus仿真】STC15单片机+LCD1602驱动显示时间(DEMO)示例
代码:
/************* 本程序功能说明 **************
驱动LCD1602字符屏.
显示效果为: LCD显示时间.
第一行显示 ---Clock demo---
第二行显示 9-30-27
******************************************/
#define MAIN_Fosc 22118400L //定义主时钟
#include "STC15Fxxxx.H"
/************* IO口定义 **************/
/************* 本地变量声明 **************/
u8 hour,minute,second;
void DisplayRTC(void);
void RTC(void);
void delay_ms(u8 ms);
void Initialize_LCD(void);
void Write_AC(u8 hang,u8 lie);
void Write_DIS_Data(u8 DIS_Data);
void ClearLine(u8 row);
u8 BIN_ASCII(u8 tmp);
void PutString(u8 row, u8 column, u8 *puts);
void WriteChar(u8 row, u8 column, u8 dat);
//========================================================================
// 函数: void main(void)
// 描述: 主函数。
// 参数: none.
// 返回: none.
// 版本: VER1.0
// 日期: 2013-4-1
// 备注:
//========================================================================
void main(void)
{
P0M1 = 0; P0M0 = 0; //设置为准双向口
P1M1 = 0; P1M0 = 0; //设置为准双向口
P2M1 = 0; P2M0 = 0; //设置为准双向口
P3M1 = 0; P3M0 = 0; //设置为准双向口
P4M1 = 0; P4M0 = 0; //设置为准双向口
P5M1 = 0; P5M0 = 0; //设置为准双向口
P6M1 = 0; P6M0 = 0; //设置为准双向口
P7M1 = 0; P7M0 = 0; //设置为准双向口
Initialize_LCD();
ClearLine(0);//清屏第一行
ClearLine(1);//清屏第二行
PutString(0,0,"---Clock demo---");
hour = 9; //初始化时间值
minute = 30;
second = 27;
DisplayRTC();
while(1)
{
delay_ms(250); //延时1秒
delay_ms(250);
delay_ms(250);
delay_ms(250);
RTC();
DisplayRTC();
}
}
/**********************************************/
//========================================================================
// 函数: void delay_ms(u8 ms)
// 描述: 延时函数。
// 参数: ms,要延时的ms数, 这里只支持1~255ms. 自动适应主时钟.
// 返回: none.
// 版本: VER1.0
// 日期: 2013-4-1
// 备注:
//========================================================================
void delay_ms(u8 ms)
{
unsigned int i;
do{
i = MAIN_Fosc / 13000;
while(--i) ; //14T 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, 0x30);//不足10时,前面补零
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相关程序 *****************************************************/
#define LineLength 16 //16x2
/************* Pin define *****************************************************/
sfr LCD_BUS = 0x90; //P0--0x80, P1--0x90, P2--0xA0, P3--0xB0
sbit LCD_B7 = LCD_BUS^7; //D7 -- Pin 14 LED- -- Pin 16
sbit LCD_B6 = LCD_BUS^6; //D6 -- Pin 13 LED+ -- Pin 15
sbit LCD_B5 = LCD_BUS^5; //D5 -- Pin 12 Vo -- Pin 3
sbit LCD_B4 = LCD_BUS^4; //D4 -- Pin 11 VDD -- Pin 2
sbit LCD_B3 = LCD_BUS^3; //D3 -- Pin 10 VSS -- Pin 1
sbit LCD_B2 = LCD_BUS^2; //D2 -- Pin 9
sbit LCD_B1 = LCD_BUS^1; //D1 -- Pin 8
sbit LCD_B0 = LCD_BUS^0; //D0 -- Pin 7
sbit LCD_ENA = P2^2; //Pin 6
sbit LCD_RW = P2^1; //Pin 5 //LCD_RS R/W DB7--DB0 FOUNCTION
sbit LCD_RS = P2^0; //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
/*
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_DelayNop() NOP(15)
#define LCD_BusData(dat) LCD_BUS = dat
//========================================================================
// 函数: 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;
}
}
代码解读:
sfr、sbit
sfr P0 = 0x80;
sfr SP = 0x81;
sfr DPL = 0x82;
sfr DPH = 0x83;
SFR全称为:special function register(翻译为:特殊功能寄存器)
SFR也是一种扩充数据类型,占用一个内存单元,值域为0~255。利用它可以访问51单片机内部的所有特殊功能寄存器。如用sfr P1 = 0x90这一句定P1为P1端口在片内的寄存器,在后面的语句中我们可以用P1 = 255(对P1端口的所有引脚置高电平)之类的语句来操作特殊功能寄存器。
sbit同理:
sfr LCD_BUS = 0x90; //P0--0x80, P1--0x90, P2--0xA0, P3--0xB0
sbit LCD_B7 = LCD_BUS^7; //D7 -- Pin 14 LED- -- Pin 16
sbit LCD_B6 = LCD_BUS^6; //D6 -- Pin 13 LED+ -- Pin 15
sbit LCD_B5 = LCD_BUS^5; //D5 -- Pin 12 Vo -- Pin 3
sbit LCD_B4 = LCD_BUS^4; //D4 -- Pin 11 VDD -- Pin 2
sbit LCD_B3 = LCD_BUS^3; //D3 -- Pin 10 VSS -- Pin 1
sbit LCD_B2 = LCD_BUS^2; //D2 -- Pin 9
sbit LCD_B1 = LCD_BUS^1; //D1 -- Pin 8
sbit LCD_B0 = LCD_BUS^0; //D0 -- Pin 7
sbit LCD_ENA = P2^2; //Pin 6
sbit LCD_RW = P2^1; //Pin 5 //LCD_RS R/W DB7--DB0 FOUNCTION
sbit LCD_RS = P2^0; //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
P0M0
P0M0,P0M1用于 使用M0,M1设置P0口的IO模式.
有准双向口,推挽输出,高阻输入,开漏输出
//00->准双向 01->推挽PP 10->高阻输入Zin 11->开漏OD
P0M1 = 0x00; //=0000 0000
P0M0 = 0x01; //=0000 0001 // 把P0.0为推挽模式01, 其他为准双向00
能看懂吗?
比如 P0.0 设置为 00->准双向, 那么P0M1= xxxx xxx0, P0M0= xxxx xxx0,
比如 P0.7 设置为 10->高阻输入,那么P0M1= 1xxx xxxx, P0M0= 0xxx xxxx,
参考文章:
1. https://blog.csdn.net/weixin_42880082/article/details/125714492
Keil51添加STC芯片包
原文链接:https://blog.csdn.net/mcu_fang/article/details/121946843