#include <dht.h>
#define dht_pin A0
dht DHT;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
DHT.read22(dht_pin);
Serial.println(DHT.temperature);
delay(5000);
}