码迷,mamicode.com
首页 > 其他好文 > 详细

1285【毕设课设】基于单片机SHT11温湿度采集报警系统设计

时间:2021-03-09 13:49:00      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:cond   下载   位置   ref   屏幕   data   bee   图片   地址   

【资源下载】百度网盘下载地址如下:
https://docs.qq.com/doc/DTlRSd01BZXNpRUxl

技术图片

 

#include<reg51.h> 
#include <intrins.h>  
#include <math.h>   
#include <stdio.h>    
#define LCD_DB        P0 
sbit         LCD_RS=P2^0;   
sbit         LCD_RW=P2^1;  
sbit         LCD_E=P2^2;     
sbit         beep = P1^7;
sbit         key1 = P3^0;
sbit         key2 = P3^1;
sbit		     key3 = P3^2;
sbit		     key4 = P3^3;

unsigned char Time;		  //用来存放定时时间
unsigned char Second;
unsigned char w;  //标志位
unsigned char wendumode = 0;
unsigned char shidumode = 0;
unsigned char  wenduCB = 40;
unsigned char  shiduCB = 100;
unsigned int wendu,shidu;     

/******定义函数****************/ 
#define uchar unsigned char 
#define uint unsigned int 
void LCD_init(void);                          //初始化函数 
void LCD_write_command(uchar command);        //写指令函数 
void LCD_write_data(uchar dat);               //写数据函数  
void LCD_disp_char(uchar x,uchar y,uchar dat);//在某个屏幕位置上显示一个字符,X(0-15),y(1-2)  
void LCD_disp_str(uchar x,uchar y,uchar *str); //LCD1602显示字符串函数 
void delay_n10us(uint n);                     //延时函数

技术图片

 

 

  

 

1285【毕设课设】基于单片机SHT11温湿度采集报警系统设计

标签:cond   下载   位置   ref   屏幕   data   bee   图片   地址   

原文地址:https://www.cnblogs.com/ythero/p/14501274.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!