#include<DHT.h>
DHT TEMP_Sensor(8, DHT22);
float temp;
void setup()
{
// put your setup code here, to run once:
TEMP_Sensor.begin();
Serial.begin(9600);
}
void loop()
{
// put your main code here, to run repeatedly:
temp=TEMP_Sensor.readTemperature();
delay(1000);
Serial.println("Room TEMPERATURE IN CELCUS =");
Serial.println(temp);
}