#include <DHT.h>
int dht=13;
int temp=2;
int Celsius;
void setup() {
pinMode(2, INPUT);
pinMode(13, INPUT);
dht.begin();
Serial. begin(9600);
}
void loop(){
Celsius=analogRead(temp );
delay(1000);
Celsius=map(Celsius,462,3813,80,-24 );
Serial. print("temp is :");
Serial. println(Celsius);
float temp =dht.readTemperature();
delay(1000) ;
Serial. print("dht is:");
Serial. println(temp );
}