#include "DHTesp.h"
DHTesp dhtSensor;
TempAndHumidity data;
const int DHT_PIN=15;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
dhtSensor.setup(DHT_PIN, DHTesp::DHT22);
}
void loop() {
data=dhtSensor.getTempAndHumidity();
Serial.println("Temperature: "+String(data.temperature,2)+ " °C");
Serial.println("Humidity: "+String(data.humidity,1)+ "%");
Serial.println("---");
if(data.temperature > 40)
tone(13,1000);
else
noTone(13);
delay(1000);
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}