微波EDA网,见证研发工程师的成长!
首页 > 硬件设计 > 嵌入式设计 > ATMEGA16四线驱动LCD显示时间-DS1302

ATMEGA16四线驱动LCD显示时间-DS1302

时间:11-23 来源:互联网 点击:
#include

#include

#define uchar unsigned char
#define uint unsigned int
//定义LCD1602的端口应用
#define RS_CLI PORTB&=~BIT(PB1)
#define RS_SEI PORTB|=BIT(PB1)

#define RW_CLI PORTB&=~BIT(PB2)
#define RW_SEI PORTB|=BIT(PB2)

#define EN_CLI PORTB&=~BIT(PB3)
#define EN_SEI PORTB|=BIT(PB3)
//定义DS1302数据端口
#define RST_CLI PORTC&=~BIT(PC4)
#define RST_SEI PORTC|=BIT(PC4)
#define RST_IN DDRC&=~BIT(PC4)
#define RST_OUT DDRC|=BIT(PC4)

#define SCLK_CLI PORTC&=~BIT(PC2)
#define SCLK_SEI PORTC|=BIT(PC2)
#define SCLK_IN DDRC&=~BIT(PC2)
#define SCLK_OUT DDRC|=BIT(PC2)

#define IO_CLI PORTC&=~BIT(PC3)
#define IO_SEI PORTC|=BIT(PC3)
#define IO_R PINC&BIT(PC3)
#define IO_IN DDRC&=~BIT(PC3)
#define IO_OUT DDRC|=BIT(PC3)

#define ds1302_sec_add0x80//秒数据地址
#define ds1302_min_add0x82//分数据地址
#define ds1302_hr_add0x84//时数据地址
#define ds1302_date_add0x86//日数据地址
#define ds1302_month_add0x88//月数据地址
#define ds1302_day_add0x8a//星期数据地址
#define ds1302_year_add0x8c//年数据地址
#define ds1302_control_add0x8e//控制数据地址
#define ds1302_charger_add0x90
#define ds1302_clkburst_add0xbe

unsigned char time_buf[8] = {0x20,0x09,0x04,0x28,0x17,0x13,0x00,0x02};
unsigned char time_buf1[8] = {0x20,0x10,0x04,0x12,0x23,0x18,0x22,0x00};

void DS1302_WriteByte(uchar addr,uchar data)
{
uchar i=0;
RST_SEI; //启动DS1302,进行写操作
IO_OUT; //定义数据口为输出模式
addr=addr&0xfe; //最低位为0表示写入。为1时表示读取
for(i=0;i<8;i++)
{
if(addr&0x01) //DS1320发送数据是先低位后高位,当传送第一位时与0x01相与,
{ //如果相等,表示传送的位为高电平,不等则为低电平,第一次送完第一次后ADDR左移一位准备传送第二位数据
IO_SEI; //如果相等表示传送的位为高电平,不等则为低电平,如此循环8次之后,要写入的数据就写完了
}
else
{
IO_CLI;
}
SCLK_SEI;
SCLK_CLI;
addr=addr>>1;
}
IO_OUT;
for(i=0;i<8;i++)
{
if(data&0x01)
{
IO_SEI;
}
else
{
IO_CLI;
}
SCLK_SEI;
SCLK_CLI;
data=data>>1;
}
RST_CLI;
}

uchar DS1302_ReadByte(uchar addr)
{
uchar temp=0,i=0;
RST_SEI;
IO_OUT;
addr=addr|0x01;
for(i=0;i<8;i++)
{
if(addr&0x01)
{
IO_SEI;
}
else
{
IO_CLI;
}
SCLK_SEI;
SCLK_CLI;
addr=addr>>1;
}
IO_IN;
for(i=0;i<8;i++)//读数据和写数据正好相反,手法相同;先判断读取到的值是高位还是低位,在经行保存
{
temp=temp>>1;//为下一次保存数据做准备先读低位后读高位
if(IO_R)//如果读取到的数据为高,则置高
{
temp|=0x80;
}
else//如果读取到的数据为低,则啦低
{
temp&=0x7f;
}
SCLK_SEI;
SCLK_CLI;
}
RST_CLI;
return temp;
}

void DS1302_Init(void)
{
RST_CLI;
SCLK_CLI;
RST_OUT;
SCLK_OUT;
}

void DS1302_WriteTime(void)
{
DS1302_WriteByte(ds1302_control_add,0x00);//当写保护寄存器的最高位为0 时允许数据写入寄存器,
//当写保护寄存器的最高位为1 时禁止数据写入寄存器
DS1302_WriteByte(ds1302_sec_add,0x80);//秒寄存器的第7 位时钟停止位设置为0 时起动时钟开始、设置为1时时钟停止运行

DS1302_WriteByte(ds1302_year_add,0x10); //年
DS1302_WriteByte(ds1302_month_add,0x12); //月
DS1302_WriteByte(ds1302_day_add,0x04); //星期
DS1302_WriteByte(ds1302_date_add,0x23); //日
DS1302_WriteByte(ds1302_hr_add,0x16); //小时
DS1302_WriteByte(ds1302_min_add,0x00); //分
DS1302_WriteByte(ds1302_sec_add,0x00); //秒

DS1302_WriteByte(ds1302_control_add,0x80);//当写保护寄存器的最高位为1 时禁止数据写入寄存器
}

void DS1302_WriteTime1(void)
{
uchar i=0,addr=ds1302_year_add;
DS1302_WriteByte(ds1302_control_add,0x00);//当写保护寄存器的最高位为0 时允许数据写入寄存器,
//当写保护寄存器的最高位为1 时禁止数据写入寄存器
DS1302_WriteByte(ds1302_sec_add,0x80);//秒寄存器的第7 位时钟停止位设置为0 时起动时钟开始、设置为1时时钟停止运行
for(i=1;i<8;i++)
{
DS1302_WriteByte(addr,time_buf1[i]);
addr-=2;
}
DS1302_WriteByte(ds1302_control_add,0x80);//当写保护寄存器的最高位为1 时禁止数据写入寄存器
}

void DS1302_GetTime(void)
{
time_buf[1]=DS1302_ReadByte(ds1302_year_add);
time_buf[2]=DS1302_ReadByte(ds1302_month_add);
time_buf[3]=DS1302_ReadByte(ds1302_date_add);
time_buf[4]=DS1302_ReadByte(ds1302_day_add);
time_buf[5]=DS1302_ReadByte(ds1302_hr_add);
time_buf[6]=DS1302_ReadByte(ds1302_min_add);
time_buf[7]=(DS1302_ReadByte(ds1302_sec_add))&0x7f;
}

void DS1302_GetTime1(void)
{
uchar i=0,addr=ds1302_year_add;
for(i=1;i<8;i++)
{
time_buf1[i]=DS1302_ReadByte(addr);//0x8c=ds1302_year_add
addr=addr-2;
}
}

void delay(uint ms)
{
uint i=0,j=0;
for(i=ms;i>0;i--)
for(j=1141;j>0;j--);
}

void delay_us(uint us)
{
uint i,j;
for(i=0;i<8;i++)
{
for(j=0;j NOP();
}
}

void port_init(void)
{
DDRB=0XFF;
PORTB=0XFF;
}

void LCD_EN_Write(void)
{
EN_CLI;
delay_us(5);
EN_SEI;
delay_us(5);
}

void LCD_Write(uchar icom,uchar data)
{
if(0==icom) //写命令
RS_CLI;
else //写数据
RS_SEI;
RW_CLI;
PORTB&=0X0F; //先清除PORTB的高四位
PORTB|=(data&0XF0); //将写入的数据取出高四位先发送
LCD_EN_Write(); //使能LCD
delay_us(35); //延时 确保高四位的写入正确
data=data<4; //屏蔽高四位
PORTB&=0X0F; // 取出数据的低四位数据
PORTB|=(data&0XF0); //发送低四位数据
LCD_EN_Write(); //使能LCD
}

void LCD_Clear(void)
{
LCD_Write(0,0X01);
delay(5);
}

void lcd_init(void)
{
delay(15);
LCD_Write(0,0x28);//四线数据线、16X2显示、5x7点阵
LCD_EN_Write(); //这句很重要,切忌,丢失可能LCD就是一块黑板,什么都没有
delay(5);
LCD_Write(0,0x28);//四线数据线、16X2显示、5x7点阵
LCD_Write(0,0x08);//关闭显示
delay(5);
LCD_Write(0,0x01);//清除屏幕显示

LCD_Write(0,0x06);//当读写一字符后地址指针加一光标加一,整屏不移动
delay(5);

LCD_Write(0,0x0c);//开显示、显示光标、光标闪烁
delay(5);
}

void LCD_Write_Byte(uchar Line,uchar addr,uchar data)
{
if(1==Line)
LCD_Write(0,0x80+addr);
else if(2==Line)
LCD_Write(0,0xc0+addr);
LCD_Write(1,data);
}

void LCD_Write_Str(uchar Line,uchar addr,uchar *p)
{
if(1==Line)
LCD_Write(0,0x80+addr);
else if(2==Line)
LCD_Write(0,0xc0+addr);
while(*p)
{
LCD_Write(1,*p);
p++;
}
}

Copyright © 2017-2020 微波EDA网 版权所有

网站地图

Top