You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
320 B
17 lines
320 B
10 years ago
|
#pragma once
|
||
|
|
||
|
//
|
||
|
// Reading temperature and relative humidity from DHT11
|
||
|
//
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
typedef struct {
|
||
|
int8_t temp;
|
||
|
int8_t rh;
|
||
|
} dht11_result_t;
|
||
|
|
||
|
/** Read tehmperature and humidity from the DHT11, returns false on failure */
|
||
|
bool dht11_read(const uint8_t pin, dht11_result_t* result);
|