51单片机 AT24C02存数据

main.c中

#include <REGX52.H>
#include"Delay.h"
#include"LCD1602.h"
#include"Key.h"
#include"AT24C02.h"
#include"I2C.h"

unsigned char KeyNum;
unsigned int  Num;

void main()
{
     LCD_Init();
     LCD_ShowNum(1,1,Num,5);
//     AT24C02_WriteByte(1,66); //0到255之间   
//     Delay(5);
//     Data=AT24C02_ReadByte(1);//写周期需要5毫秒
//     LCD_ShowNum(2,1,Data,3);
     while(1)
     {
         KeyNum=Key();
         if(KeyNum==1)
         {
           Num++;
           LCD_ShowNum(1,1,Num,5);
         }

         if(KeyNum==2)
         {
           Num--;
           LCD_ShowNum(1,1,Num,5);
         }

         if(KeyNum==3)
         {
               AT24C02_WriteByte(0,Num%256); //取余 取低8位
            Delay(5);
            AT24C02_WriteByte(1,Num/256);//高八位
            Delay(5);
            LCD_ShowString(2,1,"Write OK");
            Delay(1000);
            LCD_ShowString(2,1,"        ");
         }

         if(KeyNum==4)
         {
               Num=AT24C02_ReadByte(0); //低八位
            Num|=AT24C02_ReadByte(1)<<8;     //或 高八位
            LCD_ShowNum(1,1,Num,5);
            LCD_ShowString(2,1,"Read OK");
            Delay(1000);
            LCD_ShowString(2,1,"       ");
         }
     }

}

delay.c

void Delay(unsigned int xms)
{
    unsigned char i, j;
    while(xms--)
    {
        i = 2;
        j = 239;
        do
        {
            while (--j);
        } while (--i);
    }
}

delay.h

#ifndef __DELAY_H__
#define __DELAY_H__

void Delay(unsigned int xms);

#endif

LCD1602.c

#include <REGX52.H>

//引脚配置:
sbit LCD_RS=P2^6;
sbit LCD_RW=P2^5;
sbit LCD_EN=P2^7;
#define LCD_DataPort P0

//函数定义:
/**
  * @brief  LCD1602延时函数,12MHz调用可延时1ms
  * @param  无
  * @retval 无
  */
void LCD_Delay()
{
    unsigned char i, j;

    i = 2;
    j = 239;
    do
    {
        while (--j);
    } while (--i);
}

/**
  * @brief  LCD1602写命令
  * @param  Command 要写入的命令
  * @retval 无
  */
void LCD_WriteCommand(unsigned char Command)
{
    LCD_RS=0;
    LCD_RW=0;
    LCD_DataPort=Command;
    LCD_EN=1;
    LCD_Delay();
    LCD_EN=0;
    LCD_Delay();
}

/**
  * @brief  LCD1602写数据
  * @param  Data 要写入的数据
  * @retval 无
  */
void LCD_WriteData(unsigned char Data)
{
    LCD_RS=1;
    LCD_RW=0;
    LCD_DataPort=Data;
    LCD_EN=1;
    LCD_Delay();
    LCD_EN=0;
    LCD_Delay();
}

/**
  * @brief  LCD1602设置光标位置
  * @param  Line 行位置,范围:1~2
  * @param  Column 列位置,范围:1~16
  * @retval 无
  */
void LCD_SetCursor(unsigned char Line,unsigned char Column)
{
    if(Line==1)
    {
        LCD_WriteCommand(0x80|(Column-1));
    }
    else if(Line==2)
    {
        LCD_WriteCommand(0x80|(Column-1+0x40));
    }
}

/**
  * @brief  LCD1602初始化函数
  * @param  无
  * @retval 无
  */
void LCD_Init()
{
    LCD_WriteCommand(0x38);//八位数据接口,两行显示,5*7点阵
    LCD_WriteCommand(0x0c);//显示开,光标关,闪烁关
    LCD_WriteCommand(0x06);//数据读写操作后,光标自动加一,画面不动
    LCD_WriteCommand(0x01);//光标复位,清屏
}

/**
  * @brief  在LCD1602指定位置上显示一个字符
  * @param  Line 行位置,范围:1~2
  * @param  Column 列位置,范围:1~16
  * @param  Char 要显示的字符
  * @retval 无
  */
void LCD_ShowChar(unsigned char Line,unsigned char Column,char Char)
{
    LCD_SetCursor(Line,Column);
    LCD_WriteData(Char);
}

/**
  * @brief  在LCD1602指定位置开始显示所给字符串
  * @param  Line 起始行位置,范围:1~2
  * @param  Column 起始列位置,范围:1~16
  * @param  String 要显示的字符串
  * @retval 无
  */
void LCD_ShowString(unsigned char Line,unsigned char Column,char *String)
{
    unsigned char i;
    LCD_SetCursor(Line,Column);
    for(i=0;String[i]!='\0';i++)
    {
        LCD_WriteData(String[i]);
    }
}

/**
  * @brief  返回值=X的Y次方
  */
int LCD_Pow(int X,int Y)
{
    unsigned char i;
    int Result=1;
    for(i=0;i<Y;i++)
    {
        Result*=X;
    }
    return Result;
}

/**
  * @brief  在LCD1602指定位置开始显示所给数字
  * @param  Line 起始行位置,范围:1~2
  * @param  Column 起始列位置,范围:1~16
  * @param  Number 要显示的数字,范围:0~65535
  * @param  Length 要显示数字的长度,范围:1~5
  * @retval 无
  */
void LCD_ShowNum(unsigned char Line,unsigned char Column,unsigned int Number,unsigned char Length)
{
    unsigned char i;
    LCD_SetCursor(Line,Column);
    for(i=Length;i>0;i--)
    {
        LCD_WriteData(Number/LCD_Pow(10,i-1)%10+'0');
    }
}

/**
  * @brief  在LCD1602指定位置开始以有符号十进制显示所给数字
  * @param  Line 起始行位置,范围:1~2
  * @param  Column 起始列位置,范围:1~16
  * @param  Number 要显示的数字,范围:-32768~32767
  * @param  Length 要显示数字的长度,范围:1~5
  * @retval 无
  */
void LCD_ShowSignedNum(unsigned char Line,unsigned char Column,int Number,unsigned char Length)
{
    unsigned char i;
    unsigned int Number1;
    LCD_SetCursor(Line,Column);
    if(Number>=0)
    {
        LCD_WriteData('+');
        Number1=Number;
    }
    else
    {
        LCD_WriteData('-');
        Number1=-Number;
    }
    for(i=Length;i>0;i--)
    {
        LCD_WriteData(Number1/LCD_Pow(10,i-1)%10+'0');
    }
}

/**
  * @brief  在LCD1602指定位置开始以十六进制显示所给数字
  * @param  Line 起始行位置,范围:1~2
  * @param  Column 起始列位置,范围:1~16
  * @param  Number 要显示的数字,范围:0~0xFFFF
  * @param  Length 要显示数字的长度,范围:1~4
  * @retval 无
  */
void LCD_ShowHexNum(unsigned char Line,unsigned char Column,unsigned int Number,unsigned char Length)
{
    unsigned char i,SingleNumber;
    LCD_SetCursor(Line,Column);
    for(i=Length;i>0;i--)
    {
        SingleNumber=Number/LCD_Pow(16,i-1)%16;
        if(SingleNumber<10)
        {
            LCD_WriteData(SingleNumber+'0');
        }
        else
        {
            LCD_WriteData(SingleNumber-10+'A');
        }
    }
}

/**
  * @brief  在LCD1602指定位置开始以二进制显示所给数字
  * @param  Line 起始行位置,范围:1~2
  * @param  Column 起始列位置,范围:1~16
  * @param  Number 要显示的数字,范围:0~1111 1111 1111 1111
  * @param  Length 要显示数字的长度,范围:1~16
  * @retval 无
  */
void LCD_ShowBinNum(unsigned char Line,unsigned char Column,unsigned int Number,unsigned char Length)
{
    unsigned char i;
    LCD_SetCursor(Line,Column);
    for(i=Length;i>0;i--)
    {
        LCD_WriteData(Number/LCD_Pow(2,i-1)%2+'0');
    }
}


LCD1602.H中

#ifndef __LCD1602_H__
#define __LCD1602_H__


void LCD_Init();
 //初始化
void LCD_ShowChar(unsigned char Line,unsigned char Column,char Char);
//显示一个字符
void LCD_ShowString(unsigned char Line,unsigned char Column,char *String);
//显示字符串
void LCD_ShowNum(unsigned char Line,unsigned char Column,unsigned int Number,unsigned char Length);
//显示十进制数字
void LCD_ShowSignedNum(unsigned char Line,unsigned char Column,int Number,unsigned char Length);
//显示有符号十进制数字
void LCD_ShowHexNum(unsigned char Line,unsigned char Column,unsigned int Number,unsigned char Length);
//显示十六进制数字
void LCD_ShowBinNum(unsigned char Line,unsigned char Column,unsigned int Number,unsigned char Length);
//显示二进制数字
#endif

Key.c

#include <REGX52.H>
#include"Delay.h"

// 获取独立按键键码,
unsigned char Key()
{
    unsigned char KeyNumber=0;

    if(P3_1==0){Delay(20);while(P3_1==0);Delay(20);KeyNumber=1;}
    if(P3_0==0){Delay(20);while(P3_0==0);Delay(20);KeyNumber=2;}
    if(P3_2==0){Delay(20);while(P3_2==0);Delay(20);KeyNumber=3;}
    if(P3_3==0){Delay(20);while(P3_3==0);Delay(20);KeyNumber=4;}

    return KeyNumber;
}

Key.h中

#ifndef __KEY_H__
#define    __KEY_H__

unsigned char Key();

#endif

AT24C02.c文件中

#include <REGX52.H>
#include"I2C.h"
#define AT24C02_ADDRESS      0xA0
/**
   *    注释:AT24C02写入一个字节
    输入参数:WordAddress  写入字节的地址
    输出参数:Data 要写入的数据  
*/
void AT24C02_WriteByte(unsigned char WordAddress,Data)
{
   unsigned char Ack;
   I2C_Start();
   I2C_SendByte(AT24C02_ADDRESS);
   I2C_ReceiveAck();
   I2C_SendByte(WordAddress);
   I2C_ReceiveAck();
   I2C_SendByte(Data);
   I2C_ReceiveAck();
   I2C_Stop();
}

/**
   *    注释:AT24C02读取一个字节
    输入参数:WordAddress 读出字节的地址
    输出参数:Data    读出数据
*/
unsigned char AT24C02_ReadByte(unsigned char WordAddress)
{
   unsigned char Data;
   I2C_Start();
   I2C_SendByte(AT24C02_ADDRESS);
   I2C_ReceiveAck();
   I2C_SendByte(WordAddress);
   I2C_ReceiveAck();
   I2C_Start();
   I2C_SendByte(AT24C02_ADDRESS|0x01);
   I2C_ReceiveAck();
   Data=I2C_ReceiveByte();
   I2C_SendAck(1);
   I2C_Stop();
   return Data;
}

AT24C02.h文件中

#ifndef __AT24C02_H__
#define __AT24C02_H__

void AT24C02_WriteByte(unsigned char WordAddress,Data);
unsigned char AT24C02_ReadByte(unsigned char WordAddress);

#endif

I2C.c文件中

#include <REGX52.H>

sbit I2C_SCL=P2^1;
sbit I2C_SDA=P2^0;

void I2C_Start(void)
{
    I2C_SDA=1;
    I2C_SCL=1;
    I2C_SDA=0;
    I2C_SCL=0; 
}

void I2C_Stop(void)
{    I2C_SCL=0;
    I2C_SDA=0;
    I2C_SCL=1; 
    I2C_SDA=1;
}

void I2C_SendByte(unsigned char Byte)
{
     unsigned char i;
     for(i=0;i<8;i++)
     {
       I2C_SDA=Byte&(0x80>>i);
       I2C_SCL=1;
       I2C_SCL=0;
     }     
}

unsigned char I2C_ReceiveByte  (void)
{
     unsigned char i,Byte;
     I2C_SDA=1;
     for(i=0;i<8;i++)
     {
       I2C_SCL=1;
       if(I2C_SDA){Byte|=(0x80>>i);}
       I2C_SCL=0;
     }
      return Byte;
}
//发送应答位
void I2C_SendAck(unsigned char AckBit)
{
     I2C_SDA=AckBit;
     I2C_SCL=1;
     I2C_SCL=0;
}

//接收应答
unsigned char I2C_ReceiveAck(void)
{
     unsigned char AckBit;
     I2C_SDA=1;//释放
     I2C_SCL=1;
     AckBit=I2C_SDA;
     I2C_SCL=0;
     return AckBit;//返回值是1,无应答
}

I2C.h文件中

#ifndef __I2C_H__
#define __I2C_H__

void I2C_Start(void);
void I2C_Stop(void);
void I2C_SendByte(unsigned char Byte);
unsigned char I2C_ReceiveByte(void);
void I2C_SendAck(unsigned char AckBit);
unsigned char I2C_ReceiveAck(void);

#endif

  • 6
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值