You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
321 B
C

1 month ago
#ifndef _DHT11_H_
#define _DHT11_H_
#include <stdint.h>
/** DHT11初始化
* @param dht11_pin GPIO
* @return
*/
void DHT11_Init(uint8_t dht11_pin);
/** 获取DHT11数据
* @param temp_x10 X10
* @param humidity 湿
* @return
*/
int DHT11_StartGet(int *temp_x10, int *humidity);
#endif