From 4a215686fbc64305e5d586cb97f5baf3e18b8048 Mon Sep 17 00:00:00 2001 From: Alexander Bobkov Date: Fri, 10 Oct 2025 00:35:33 -0400 Subject: [PATCH] . --- ESP32-IDF_Temperture-Node-v2/main/hello_world_main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ESP32-IDF_Temperture-Node-v2/main/hello_world_main.c b/ESP32-IDF_Temperture-Node-v2/main/hello_world_main.c index 1f6abf18f..d574d1a16 100644 --- a/ESP32-IDF_Temperture-Node-v2/main/hello_world_main.c +++ b/ESP32-IDF_Temperture-Node-v2/main/hello_world_main.c @@ -69,6 +69,7 @@ void read_sensors_task(void *arg) bme280_read_humidity(bme280, &humidity); bme280_read_pressure(bme280, &pressure); mqttronix_update_temp (temperature); + printf(" %.1f, %.2f, %.2f \n", temperature, humidity, pressure); vTaskDelay(1000/portTICK_PERIOD_MS); } }