stm32室内温湿度监测的代码
时间: 2024-12-14 19:12:19 浏览: 3
以下是一个使用STM32进行室内温湿度监测的示例代码。这个示例使用了DHT11传感器来读取温湿度数据,并通过串口将数据发送到PC。
```c
#include "stm32f10x.h"
#include "stm32f10x_usart.h"
#include "stm32f10x_gpio.h"
#include "stm32f10x_rcc.h"
#include "stm32f10x_tim.h"
// 定义DHT11连接的GPIO端口和引脚
#define DHT11_GPIO_PORT GPIOA
#define DHT11_GPIO_PIN GPIO_Pin_0
// 延时函数
void Delay(uint32_t time) {
while(time--);
}
// 初始化DHT11
void DHT11_Init(void) {
GPIO_InitTypeDef GPIO_InitStructure;
// 使能GPIOA时钟
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
// 配置DHT11引脚为开漏输出
GPIO_InitStructure.GPIO_Pin = DHT11_GPIO_PIN;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_OD;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(DHT11_GPIO_PORT, &GPIO_InitStructure);
// 初始化为高电平
GPIO_SetBits(DHT11_GPIO_PORT, DHT11_GPIO_PIN);
}
// 读取DHT11数据
uint8_t DHT11_ReadByte(void) {
uint8_t i, byte = 0;
for(i = 0; i < 8; i++) {
while(!GPIO_ReadInputDataBit(DHT11_GPIO_PORT, DHT11_GPIO_PIN)); // 等待高电平
Delay(30); // 延时30us
if(GPIO_ReadInputDataBit(DHT11_GPIO_PORT, DHT11_GPIO_PIN)) {
byte |= (1 << (7 - i));
}
while(GPIO_ReadInputDataBit(DHT11_GPIO_PORT, DHT11_GPIO_PIN)); // 等待低电平
}
return byte;
}
// 读取DHT11温湿度数据
uint8_t DHT11_ReadData(uint8_t *temperature, uint8_t *humidity) {
uint8_t i, checksum;
// 主机拉低电平至少18ms
GPIO_ResetBits(DHT11_GPIO_PORT, DHT11_GPIO_PIN);
Delay(18000);
// 主机拉高电平20-40us
GPIO_SetBits(DHT11_GPIO_PORT, DHT11_GPIO_PIN);
Delay(30);
// 设置为输入模式
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin = DHT11_GPIO_PIN;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
GPIO_Init(DHT11_GPIO_PORT, &GPIO_InitStructure);
// 检查DHT11响应
if(!GPIO_ReadInputDataBit(DHT11_GPIO_PORT, DHT11_GPIO_PIN)) {
while(!GPIO_ReadInputDataBit(DHT11_GPIO_PORT, DHT11_GPIO_PIN));
while(GPIO_ReadInputDataBit(DHT11_GPIO_PORT, DHT11_GPIO_PIN));
// 读取40位数据
*humidity = DHT11_ReadByte();
*temperature = DHT11_ReadByte();
checksum = DHT11_ReadByte();
// 校验和
if(checksum == (*humidity + *temperature)) {
return 1;
}
}
return 0;
}
// 初始化USART1
void USART1_Init(void) {
USART_InitTypeDef USART_InitStructure;
GPIO_InitTypeDef GPIO_InitStructure;
// 使能GPIOA和USART1时钟
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_USART1, ENABLE);
// 配置USART1 Tx (PA9) 为复用推挽输出
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_Init(GPIOA, &GPIO_InitStructure);
// 配置USART1 Rx (PA10) 为浮空输入
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_Init(GPIOA, &GPIO_InitStructure);
// 配置USART1
USART_InitStructure.USART_BaudRate = 9600;
USART_InitStructure.USART_WordLength = USART_WordLength_8b;
USART_InitStructure.USART_StopBits = USART_StopBits_1;
USART_InitStructure.USART_Parity = USART_Parity_No;
USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;
USART_Init(USART1, &USART_InitStructure);
// 使能USART1
USART_Cmd(USART1, ENABLE);
}
// USART1发送一个字符
void USART1_SendChar(char c) {
while(USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET);
USART_SendData(USART1, c);
}
// USART1发送字符串
void USART1_SendString(char* str) {
while(*str) {
USART1_SendChar(*str++);
}
}
int main(void) {
uint8_t temperature, humidity;
DHT11_Init();
USART1_Init();
while(1) {
if(DHT11_ReadData(&temperature, &humidity)) {
char buffer[50];
sprintf(buffer, "Temperature: %d C, Humidity: %d%%\r\n", temperature, humidity);
USART1_SendString(buffer);
} else {
USART1_SendString("Read DHT11 data failed\r\n");
}
Delay(1000000);
}
}
```
这个代码实现了以下功能:
1. 初始化DHT11传感器
2. 从DHT11读取温度和湿度数据
3. 初始化USART1用于串口通信
4. 通过串口将读取到的温湿度数据发送到PC
请注意,这只是一个基本示例,实际应用中可能需要根据具体硬件环境进行调整。同时,为了提高代码的可靠性和准确性,可能需要添加更多的错误处理和数据校验机制。
阅读全文