1
0
mirror of https://github.com/revspace/operame synced 2024-11-01 05:57:30 +00:00

Merge pull request #9 from SanderVanhove/main

Add temperature and humidity to rest message
This commit is contained in:
Pieter De Mil 2021-09-03 16:37:07 +02:00 committed by GitHub
commit f9c3d05ce9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -584,7 +584,6 @@ void loop() {
} else { } else {
// Check if there is a humidity sensor // Check if there is a humidity sensor
if (isnan(h) || isnan(t)) { if (isnan(h) || isnan(t)) {
Serial.println("Failed to read from DHT sensor!");
// Only display CO2 value (the old way) // Only display CO2 value (the old way)
// some MH-Z19's go to 10000 but the display has space for 4 digits // some MH-Z19's go to 10000 but the display has space for 4 digits
display_ppm(co2 > 9999 ? 9999 : co2); display_ppm(co2 > 9999 ? 9999 : co2);
@ -612,10 +611,7 @@ void loop() {
if(mqtt_temp_hum_enabled) { if(mqtt_temp_hum_enabled) {
//temperature //temperature
if(isnan(t)) { if(!isnan(t)) {
Serial.println("Failed to read from DHT sensor, so no MQTT publish");
}
else {
String message; String message;
const size_t capacity = JSON_OBJECT_SIZE(3); const size_t capacity = JSON_OBJECT_SIZE(3);
DynamicJsonDocument doc(capacity); DynamicJsonDocument doc(capacity);
@ -627,10 +623,7 @@ void loop() {
} }
//humidity //humidity
if(isnan(h)) { if(!isnan(h)) {
Serial.println("Failed to read from DHT sensor, so no MQTT publish");
}
else {
String message; String message;
const size_t capacity = JSON_OBJECT_SIZE(3); const size_t capacity = JSON_OBJECT_SIZE(3);
DynamicJsonDocument doc(capacity); DynamicJsonDocument doc(capacity);
@ -653,9 +646,11 @@ void loop() {
every(rest_interval) { every(rest_interval) {
if (co2 <= 0) break; if (co2 <= 0) break;
const size_t capacity = JSON_OBJECT_SIZE(2); const size_t capacity = JSON_OBJECT_SIZE(4);
DynamicJsonDocument message(capacity); DynamicJsonDocument message(capacity);
message["co2"] = co2; message["co2"] = co2;
message["temperature"] = t;
message["humidity"] = h;
message["id"] = rest_resource_id.c_str(); message["id"] = rest_resource_id.c_str();
if (wificlientsecure.connected() || wificlientsecure.connect(&rest_domain[0], rest_port)) { if (wificlientsecure.connected() || wificlientsecure.connect(&rest_domain[0], rest_port)) {