找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 2888|回复: 2
收起左侧

温度传感器SHT1x和SHT2x的STM32源代码

[复制链接]
ID:387922 发表于 2018-8-27 11:18 | 显示全部楼层 |阅读模式
温度传感器SHT1x和SHT2x的iic通信代码,这都是从网上找的代码,sht1x亲测可用,sht2x时序也是准确的。后续将呈现sht7x代码

0.png

单片机源程序如下:
  1. #include "led.h"
  2. #include "delay.h"
  3. #include "sys.h"
  4. #include "usart.h"
  5. #include "lcd.h"
  6. #include "SHT10.h"

  7. SHT1x sht1x; //定义传感器结构体

  8. int main(void)
  9. {

  10.     u8 t=0,error=0,checksum,value=0;
  11.     volatile u8 T_Display=0,H_Display=0;
  12.     u16 T_Value=0,H_Value=0;

  13.     delay_init(); //延时函数初始化
  14.         uart_init(9600); //USART1初始化
  15.         LED_Init(); //LED初始化
  16.     LCD_Init();   
  17.     SHT1x_Init();
  18.    
  19.     POINT_COLOR=RED;//设置字体为红色
  20.         LCD_ShowString(60,120,200,16,16,"SHT1X Test");

  21.         POINT_COLOR=BLUE;//设置字体为蓝色
  22.         LCD_ShowString(60,150,200,16,16,"Temp:   .   C");       
  23.         LCD_ShowString(60,170,200,16,16,"Humi:   .   %RH");       
  24.    
  25.     if(!SHT1X_read_statusreg(&value))
  26.     {
  27.         if(value&0x07)
  28.         {
  29.             for(value=5;value!=0;value--)
  30.             {
  31.                 if(!SHT1X_write_statusreg(0))break;
  32.                 else SHT1X_softreset();
  33.             }
  34.         }
  35.     }
  36.         while(1)
  37.         {  
  38. //------------------------读取SHT1X传感器数据--------------------------------------
  39.         error+=SHT1x_Measure( &T_Value,&checksum,0);  //measure temperature
  40.         error+=SHT1x_Measure( &H_Value,&checksum,1);  //measure humidity
  41.                        
  42.         if(error!=0)SHT1x_Reset(); //通讯故障,复位传感器
  43.         else
  44.         {
  45.             sht1x.T_Result = T_Value;
  46.             sht1x.H_Result = H_Value;
  47.             SHT1X_Caculation1((float*)&sht1x.T_Result, (float*)&sht1x.H_Result );
  48.            
  49.             sht1x.Temperature=sht1x.T_Result;
  50.             sht1x.Humidity=(u16)sht1x.H_Result;
  51.             sht1x.DEW=SHT1X_dewpoint1(sht1x.T_Result, sht1x.H_Result);
  52.         }
  53. //------------------------------------------------------------------------------
  54.         

  55. //显示函数处理         
  56. //-------------------温度显示-------------------------------------------------
  57.       
  58.         if(sht1x.Temperature<0)
  59.         {
  60.             LCD_ShowChar(60+40,150,'-',16,0);                        //显示负号
  61.             sht1x.Temperature=-sht1x.Temperature;    //转为正数
  62.         }
  63.         else LCD_ShowChar(60+40,150,' ',16,0);  //去掉负号
  64.         
  65.         LCD_ShowNum(60+40+8,150,sht1x.Temperature/100,2,16);        //显示正数部分       
  66.         if((sht1x.Temperature%100)>=0 && (sht1x.Temperature%100)<=9 )
  67.         {
  68.             LCD_ShowNum(60+40+32,150,sht1x.Temperature%100,1,16);        //显示小数部分        
  69.         }
  70.         else
  71.         {
  72.             LCD_ShowNum(60+40+32,150,sht1x.Temperature%100,2,16);        //显示小数部分        
  73.         }
  74.         
  75. //-------------------------湿度显示-----------------------------------------------
  76.         LCD_ShowNum(60+40+8,170,sht1x.Humidity/100,2,16);        //显示正数部分            
  77.         if((sht1x.Humidity%100)>=0 && (sht1x.Humidity%100)<=9 )
  78.         {
  79.             LCD_ShowNum(60+40+32,170,sht1x.Humidity%100,1,16);        //显示小数部分        
  80.         }
  81.         else
  82.         {
  83.             LCD_ShowNum(60+40+32,170,sht1x.Humidity%100,2,16);        //显示小数部分        
  84.         }
  85. //--------------------------------------------------------------------------------        
  86.         t++;
  87.         if(t==20)
  88.         {
  89.                 t=0;
  90.                         LED0=!LED0;
  91.         }
  92.         }
  93. }
复制代码

所有资料51hei提供下载:
温度传感器程序.rar (1.12 MB, 下载次数: 54)
回复

使用道具 举报

ID:62514 发表于 2020-3-21 09:06 | 显示全部楼层
刚看到,希望可以使用。谢谢楼主。
回复

使用道具 举报

ID:62514 发表于 2020-3-21 09:48 | 显示全部楼层
怎么下载一次,再下载,还扣分呢?呵呵!
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|51黑电子论坛 |51黑电子论坛6群 QQ 管理员QQ:125739409;技术交流QQ群281945664

Powered by 单片机教程网

快速回复 返回顶部 返回列表