已屏蔽 原因:{{ notice.reason }}已屏蔽
{{notice.noticeContent}}
~~空空如也

附完整代码。

#include <reg52.h>

#include <intrins.h>


/*I/O口声明*/

sbit LCD1602_RS = P2^6;

sbit LCD1602_RW = P2^5;

sbit LCD1602_EN = P2^7;

sbit HX711_DOUT = P2^1; 

sbit HX711_SCK = P2^0;

sbit key1 = P3^1;

sbit key2 = P3^0;


/*全局变量定义*/

unsigned long Weight_Shiwu = 0;

unsigned long Weight_Maopi = 0;


/*函数声明*/

void Delay(unsigned int n);

void Init_LCD1602();

void LCD1602_write_com(unsigned char com);

void LCD1602_write_word(unsigned char *s);

void LCD1602_write_data(unsigned char dat);

unsigned long HX711_Read(void);

void Keyscan();

void Get_Maopi();

void Get_Weight();


int main()

Init_LCD1602(); //LCD1602初始化

LCD1602_write_com(0x80); //移动光标到第一行首位

LCD1602_write_word(" Dian Zi Cheng! "); //显示 Dian Zi Cheng! 

LCD1602_write_com(0x80 + 0x40); //移动光标到第二行首位

LCD1602_write_word("Weight :"), //显示Weight :

Delay(1000); //1s延时

while(1)

{

Keyscan();

Get_Weight();

LCD1602_write_com(0x80+0x49); //移动光标到第二行第九位

LCD1602_write_data(Weight_Shiwu%10000/1000 + 0X30);

        LCD1602_write_data(Weight_Shiwu%1000/100 + 0X30);

        LCD1602_write_data(Weight_Shiwu%100/10 + 0X30);

        LCD1602_write_data(Weight_Shiwu%10 + 0X30);

LCD1602_write_word(" g");

}

return 0;

}


/*称实物重*/

void Get_Weight()

{

Weight_Shiwu = HX711_Read();

Weight_Shiwu = (unsigned int)((float)Weight_Shiwu/108);

Weight_Shiwu = Weight_Shiwu - Weight_Maopi;

}


/*延时子函数*/

void Delay(unsigned int n)

{

int i, j;

for(i=0; i<n; i++)

for(j=0; j<110; j++);

}


/*写指令*/

void LCD1602_write_com(unsigned char com)

{

LCD1602_RS = 0;

Delay(10);

LCD1602_EN = 1;

P0 = com;

Delay(10);

LCD1602_EN = 0;

}


/*写数据*/

void LCD1602_write_data(unsigned char dat)

{

LCD1602_RS = 1;

Delay(10);

P0 = dat;

LCD1602_EN = 1;

Delay(10);

LCD1602_EN = 0;

}


/*写连续字符(字符串)*/

void LCD1602_write_word(unsigned char *s)

{

while(*s>0)

{

LCD1602_write_data(*s);

s++;

}

}


/*初始化LCD1602*/

void Init_LCD1602()

{

LCD1602_EN = 0;

LCD1602_RW = 0;

LCD1602_write_com(0x38);

LCD1602_write_com(0x0c);

LCD1602_write_com(0x06);

LCD1602_write_com(0x01);

}


/*获取ad值*/

unsigned long HX711_Read(void)

{

unsigned long count; 

unsigned char i; 

  HX711_DOUT = 1; 

_nop_();

_nop_();

  HX711_SCK = 0; 

  count=0;

  for(i=0; i<24; i++)

  HX711_SCK = 1; 

  count = count << 1; 

HX711_SCK = 0; 

  if(HX711_DOUT)

count++; 

  HX711_SCK = 1; 

    count = count^0x800000;

_nop_();

_nop_();

HX711_SCK = 0;  

return(count);

}


/*称毛皮重*/

void Get_Maopi()

{

Weight_Maopi = HX711_Read();

Weight_Maopi = (unsigned int)((float)Weight_Maopi/108); 

}


/*按键扫描*/

void Keyscan()

{

if(key1 == 0)

Delay(10);

if(key1 == 0){

Get_Maopi();

while(!key1);

}

if(key2 == 0)

Delay(10);

if(key2 == 0)

{

Weight_Maopi = 0;

while(!key2);

}

}


文号 / 899721

一表人才
名片发私信
学术分 0
总主题 3 帖总回复 43 楼拥有证书:机友
注册于 2021-03-12 10:13最后登录 2023-12-19 14:16
主体类型:个人
所属领域:无
认证方式:手机号
IP归属地:陕西

个人简介

暂未填写
文件下载
加载中...
{{errorInfo}}
{{downloadWarning}}
你在 {{downloadTime}} 下载过当前文件。
文件名称:{{resource.defaultFile.name}}
下载次数:{{resource.hits}}
上传用户:{{uploader.username}}
所需积分:{{costScores}},{{holdScores}}下载当前附件免费{{description}}
积分不足,去充值
文件已丢失

当前账号的附件下载数量限制如下:
时段 个数
{{f.startingTime}}点 - {{f.endTime}}点 {{f.fileCount}}
视频暂不能访问,请登录试试
仅供内部学术交流或培训使用,请先保存到本地。本内容不代表科创观点,未经原作者同意,请勿转载。
音频暂不能访问,请登录试试
投诉或举报
加载中...
{{tip}}
请选择违规类型:
{{reason.type}}

空空如也

插入资源
全部
图片
视频
音频
附件
全部
未使用
已使用
正在上传
空空如也~
上传中..{{f.progress}}%
处理中..
上传失败,点击重试
等待中...
{{f.name}}
空空如也~
(视频){{r.oname}}
{{selectedResourcesId.indexOf(r.rid) + 1}}
处理中..
处理失败
插入表情
我的表情
共享表情
Emoji
上传
注意事项
最大尺寸100px,超过会被压缩。为保证效果,建议上传前自行处理。
建议上传自己DIY的表情,严禁上传侵权内容。
点击重试等待上传{{s.progress}}%处理中...已上传,正在处理中
空空如也~
处理中...
处理失败
加载中...
草稿箱
加载中...
此处只插入正文,如果要使用草稿中的其余内容,请点击继续创作。
{{fromNow(d.toc)}}
{{getDraftInfo(d)}}
标题:{{d.t}}
内容:{{d.c}}
继续创作
删除插入插入
插入公式
评论控制
加载中...
文号:{{pid}}
加载中...
详情
详情
推送到专栏从专栏移除
设为匿名取消匿名
查看作者
回复
只看作者
加入收藏取消收藏
收藏
取消收藏
折叠回复
置顶取消置顶
评学术分
鼓励
设为精选取消精选
管理提醒
编辑
通过审核
评论控制
退修或删除
历史版本
违规记录
投诉或举报
加入黑名单移除黑名单
查看IP
{{format('YYYY/MM/DD HH:mm:ss', toc)}}
ID: {{user.uid}}