11 lines
103 B
C
11 lines
103 B
C
#pragma once
|
|
|
|
typedef enum {
|
|
DHT_OK
|
|
} dht22_error;
|
|
|
|
int dht_temperature();
|
|
dht22_error dht_read();
|
|
|
|
|