LetAllLinesOfCodeSpeak

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

*Author:JYW

*Time:2019_02_13

*Describe:LetAllLinesOfCodeSpeak

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

/************************************
*手把手教你学单片机代码练习*/
#include<reg52.h>

#define  Lcd1602_DB  P0

sbit  Lcd1602_RS  = P1^0;
sbit  Lcd1602_RW = P1^1;
sbit  Lcd1602_E = P1^5;

bit  flag500ms = 0;//500ms定时标志
unsigned char T0RH = 0;//T0重载值的高字节
unsigned char T0RL = 0;//T0重载值的低字节
unsigned char code str1[] = "Kingst  Studio";
unsigned char code Str2[] = "Let's move";


void ConfigTime0(unsigned char  ms);
void InitLcd1602();
void LcdshowStr(unsigned char x,unsigned char y,
                unsigned char *str,unsigned char len);

void main()
{
    unsigned char i = 0;
    unsigned char index = 0;
    unsigned char pdata  bufMove1[16+sizeof(str1)+16];
    unsigned char pdata  bufMove2[16+sizeof(Str2)+16];
    EA = 1;
    ConfigTimer0(10);//配置定时10ms;
    InitLcd1602();
    for(i= 0; i<16;i++)
    {
        bufMove1[i] = ' ';
        bufMove2[i] = ' ';
    }
    for(i = 0; i<(sizeof(str1)-1);i++)
    {
        bufMove1[16 + i] = str1[i];
        bufMove2[16 + i] = str2[i];
    }
    for(i=(16 + sizeof(str1)-1);i<sizeof(bufMove1); i++)
    {
            bufMove1[i] = ' ';
            bufMove2[i] = ' ';
    }
    while(1)
    {
        if(flag500ms)//
        {
            flag500ms = 0 ;
            LcdShowStr(0,0,bufMove1 + index,16);
            LcdShowStr(0,1,bufMove2 + index,16);
            index++;
            if(index >= (16+ sizeof(str1)-1))
            {
                    index = 0;
             }
        
        
         }
     }
    
    }

}
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值