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.
|
#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
|