mirror of
https://github.com/kevinveenbirkenbach/physical-interface.git
synced 2024-11-14 14:21:04 +01:00
Adapted DHT delay values
This commit is contained in:
parent
4576cca670
commit
f7f582973b
@ -177,9 +177,9 @@ void controller(void){
|
|||||||
String getJsonDht(void){
|
String getJsonDht(void){
|
||||||
Serial.println("Reading DHT...");
|
Serial.println("Reading DHT...");
|
||||||
DHT dht(PIN_DHT, DHT11);
|
DHT dht(PIN_DHT, DHT11);
|
||||||
delay(600); // Somehow this delay is needed to don't get "nan" values
|
delay(800); // Somehow this delay is needed to don't get "nan" values
|
||||||
String temperature = String(dht.readTemperature());
|
String temperature = String(dht.readTemperature());
|
||||||
delay(600); // Somehow this delay is needed to don't get "nan" values
|
delay(800); // Somehow this delay is needed to don't get "nan" values
|
||||||
String humidity = String(dht.readHumidity());
|
String humidity = String(dht.readHumidity());
|
||||||
return "{\"temperature_celcius\":\""+ temperature +"\",\"relative_humidity\":\""+humidity+"\"}";
|
return "{\"temperature_celcius\":\""+ temperature +"\",\"relative_humidity\":\""+humidity+"\"}";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user