3237|0

85

帖子

0

TA的资源

一粒金砂(中级)

楼主
 

零知开源分享-温湿度模块 SHT3X SHT30 SHT31 SHT35 [复制链接]

1、说明
MCU:零知开源开发板
温湿度模块:SHT3X
开发工具:零知实验室软件开发工具
功能:测量环境的温度和湿度信息

2、硬件连接
将模块的SCL,SDA分别于零知标准板的 A5,A4, I2C接口连接即可。
3、核心代码
  1. /**
  2. *        使用SHT3X 模块测试温湿度信息
  3. */

  4. #include "HTU3X.h"

  5. #define LED1        PA8

  6. //Create an instance of the object
  7. HTU3X myHumidity;

  8. void setup()
  9. {
  10.   Serial.begin(9600);
  11.   Serial.println("HTU21D Example!");

  12.         pinMode(LED1, OUTPUT);

  13.   myHumidity.begin();
  14. }

  15. void loop()
  16. {
  17.         digitalWrite(LED1, HIGH);
  18.         delay(500);
  19.         digitalWrite(LED1, LOW);
  20.          
  21.   float humd, temp;
  22.   myHumidity.readTempAndHumi(&temp, &humd);

  23.   Serial.print("时间:");
  24.   Serial.print(millis());
  25.   Serial.print(" 温度:");
  26.   Serial.print(temp, 1);
  27.   Serial.print(" °C");
  28.   Serial.print(" 湿度:");
  29.   Serial.print(humd, 1);
  30.   Serial.print("%");

  31.   Serial.println();
  32.   delay(1000);
  33. }
复制代码
  1. /**
  2. *   file : HTU3X.H
  3. */

  4. #if defined(ARDUINO) && ARDUINO >= 100
  5. #include "Arduino.h"
  6. #else
  7. #include "WProgram.h"
  8. #endif

  9. #include <SoftWire.h>

  10. #define HTU3X_ADDR 0x44  //Unshifted 7-bit I2C address for the sensor

  11. #define ERROR_I2C_TIMEOUT         2
  12. #define ERROR_BAD_CRC                    3

  13. #define CMD_MEAS_PERI_2_H   0x2236
  14. #define CMD_MEAS_CLOCKSTR_H 0x2C06

  15. class HTU3X {

  16. public:
  17.   HTU3X();

  18.   //Public Functions
  19.   void begin(SoftWire &wirePort = Wire); //If user doesn't specificy then Wire will be used
  20.   byte readTempAndHumi(float *temp, float *humi);

  21.   //Public Variables

  22. private:
  23.   //Private Functions
  24.   SoftWire *_i2cPort; //The generic connection to user's chosen I2C hardware

  25.   byte checkCRC(uint16_t message_from_sensor, uint8_t check_value_from_sensor);
  26.   byte readValue(uint16_t *res);

  27.   //Private Variables

  28. };
复制代码
  1. /**
  2. *   file : HTU3X.cpp
  3. */
  4. #include "HTU3X.h"

  5. HTU3X::HTU3X()
  6. {
  7.   //Set initial values for private vars
  8. }

  9. //Begin
  10. /*******************************************************************************************/
  11. //Start I2C communication
  12. void HTU3X::begin(SoftWire &wirePort)
  13. {
  14.   _i2cPort = &wirePort; //Grab which port the user wants us to use
  15.    
  16.   _i2cPort->begin();
  17. }

  18. #define MAX_WAIT 100
  19. #define DELAY_INTERVAL 10
  20. #define MAX_COUNTER (MAX_WAIT/DELAY_INTERVAL)

  21. //read 2-byte value with CRC from the HTU3X
  22. byte HTU3X::readValue(uint16_t *res)
  23. {

  24.   byte msb, lsb, checksum;

  25.   msb = _i2cPort->read();
  26.   lsb = _i2cPort->read();
  27.   checksum = _i2cPort->read();

  28.   uint16_t rawValue = ((uint16_t) msb << 8) | (uint16_t) lsb;

  29.   if (checkCRC(rawValue, checksum) != 0)
  30.     return (ERROR_BAD_CRC); //Error out

  31.   *res = rawValue;

  32.   return true;
  33. }

  34. byte HTU3X::readTempAndHumi(float *temp, float *humi)
  35. {
  36.     //Request a humidity reading
  37.   _i2cPort->beginTransmission(HTU3X_ADDR);
  38.   uint16_t cmd = CMD_MEAS_CLOCKSTR_H;
  39.   _i2cPort->write(cmd>>8); //Measure value (prefer no hold!)
  40.   _i2cPort->write(cmd);
  41.   _i2cPort->endTransmission();
  42.    
  43.   delay(500);

  44.   _i2cPort->requestFrom(HTU3X_ADDR,6);

  45.   uint16_t rawTemp, rawHumi;
  46.   readValue(&rawTemp);
  47.   readValue(&rawHumi);

  48.   _i2cPort->endTransmission();

  49.   *temp = 175.0f * (float)rawTemp / 65535.0f - 45.0f;
  50.   *humi = 100.0f * (float)rawHumi / 65535.0f;

  51. }
  52.   
  53. #define SHIFTED_DIVISOR 0x988000 //This is the 0x0131 polynomial shifted to farthest left of three bytes

  54. byte HTU3X::checkCRC(uint16_t message_from_sensor, uint8_t check_value_from_sensor)
  55. {
  56.   uint8_t bit;        
  57.   uint8_t crc = 0xFF;
  58.   uint8_t byteCtr;   
  59.    uint8_t data[2] = {message_from_sensor>>8, (uint8_t)message_from_sensor};
  60.   for(byteCtr = 0; byteCtr < 2; byteCtr++)
  61.   {
  62.           crc ^= (data[byteCtr]);
  63.           for(bit = 8; bit > 0; --bit)
  64.           {
  65.                   if(crc & 0x80)
  66.                           crc = (crc << 1) ^ 0x131;
  67.                   else         
  68.                           crc = (crc << 1);
  69.           }
  70.   }
  71.    
  72.   if(crc != check_value_from_sensor)
  73.           return 1;
  74.   else                              
  75.           return 0;
  76. }

复制代码

4、测试结果







此内容由EEWORLD论坛网友roc2原创,如需转载或用于商业用途需征得作者同意并注明出处

点赞 关注(1)
 

回复
举报
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/7 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表