其他分享
首页 > 其他分享> > AHT20实现温湿度采集

AHT20实现温湿度采集

作者:互联网

AHT20+串口采集温湿度

AHT20

AHT20是国内奥松生成的I2C接口的MEMS温湿度传感器,ADC位数为20Bit,具有体积小、精度高、成本低等优点。相较于AHT10,最显著的变化是体积由 541.6mm,缩小到 331.0mm。相对湿度精度 RH=±2%,温度精度 T=±0.3°C。相对湿度测量范围 RH=0~100%,温度测量范围 T=-40~85°C。
在这里插入图片描述
其中I2C接口有硬件I2C和软件I2C之分, 所谓硬件I2C对应芯片上的I2C外设,有相应I2C驱动电路,其所使用的I2C管脚也是专用的;软件I2C一般是用GPIO管脚,用软件控制管脚状态以模拟I2C通信波形。
硬件I2C的效率要远高于软件的,而软件I2C由于不受管脚限制,接口比较灵活。
软件I2C即模拟I2C 是通过GPIO,软件模拟寄存器的工作方式,而硬件(固件)I2C是直接调用内部寄存器进行配置。

温湿度功能实现

本文基于st-link和AHT20实现采集温湿度数据,通过串口发送到上位机
在野火官网上下载教程源码压缩包,解压
#include "delay.h"
#include "usart.h"
#include "bsp_i2c.h"
int main(void)
{	
	delay_init();     
	uart_init(115200);	 
	IIC_Init();
		while(1)
	{
		printf("wait:   ");
		read_AHT20_once();
		delay_ms(1500);
  }
}

修改bsp_i2.c部分代码

void read_AHT20(void)
{
	uint8_t   i;

	for(i=0; i<6; i++)
	{
		readByte[i]=0;
	}

	//-------------
	I2C_Start();

	I2C_WriteByte(0x71);
	ack_status = Receive_ACK();
	readByte[0]= I2C_ReadByte();
	Send_ACK();

	readByte[1]= I2C_ReadByte();
	Send_ACK();

	readByte[2]= I2C_ReadByte();
	Send_ACK();

	readByte[3]= I2C_ReadByte();
	Send_ACK();

	readByte[4]= I2C_ReadByte();
	Send_ACK();

	readByte[5]= I2C_ReadByte();
	SendNot_Ack();
	//Send_ACK();

	I2C_Stop();

	//--------------
	if( (readByte[0] & 0x68) == 0x08 )
	{
		H1 = readByte[1];
		H1 = (H1<<8) | readByte[2];
		H1 = (H1<<8) | readByte[3];
		H1 = H1>>4;

		H1 = (H1*1000)/1024/1024;

		T1 = readByte[3];
		T1 = T1 & 0x0000000F;
		T1 = (T1<<8) | readByte[4];
		T1 = (T1<<8) | readByte[5];

		T1 = (T1*2000)/1024/1024 - 500;

		AHT20_OutData[0] = (H1>>8) & 0x000000FF;
		AHT20_OutData[1] = H1 & 0x000000FF;

		AHT20_OutData[2] = (T1>>8) & 0x000000FF;
		AHT20_OutData[3] = T1 & 0x000000FF;
	}
	else
	{
		AHT20_OutData[0] = 0xFF;
		AHT20_OutData[1] = 0xFF;

		AHT20_OutData[2] = 0xFF;
		AHT20_OutData[3] = 0xFF;
		printf("wrong|||");

	}
	printf("\r\n");
	printf("温度 :%d%d.%d",T1/100,(T1/10)%10,T1%10);
	printf("湿度 :%d%d.%d",H1/100,(H1/10)%10,H1%10);
	printf("\r\n");
}

总结+参考

代码调试是借鉴别人的,在这个方面还是需要继续学习。线路的接法要参考芯片手册。
硬件i2c和软件i2c

标签:ACK,温湿度,H1,readByte,T1,采集,AHT20,I2C
来源: https://blog.csdn.net/qq_43643118/article/details/111642174