• 大小: 21KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-04
  • 语言: 其他
  • 标签: 51单片机  

资源简介

资源包含了基于51单片机的lcd1602显示程序、adc0804驱动程序。通过0804测模拟电压,将值显示在lcd1602上

资源截图

代码片段和文件信息

#include
#include
#include
#include

void main()
{

unsigned int adc_data;
char temp[16];
LCD_Init();
LCD_Write_String(00“www.doflye.net“);
while(1)
{
start_adc0804();
DelayMs(100);
adc_data=read_ad();
sprintf(temp“Var:%.1f“(float)adc_data*2/51);
     LCD_Write_String(01temp);
}

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        365  2012-11-30 20:55  adc0804.c

     文件       1383  2012-11-30 20:52  adc0804.h

     文件       8503  2012-11-30 20:55  adc0804.hex

     文件       2030  2012-11-30 20:27  lcd1602.h

     文件      88675  2012-11-30 20:55  51和1602.DSN

----------- ---------  ---------- -----  ----

               100956                    5


评论

共有 条评论