From bcf3e151c3b7ec888eba6c5d5128000bb64033e3 Mon Sep 17 00:00:00 2001 From: Alexander Bobkov Date: Sat, 4 Oct 2025 04:38:52 -0400 Subject: [PATCH] esp32 temperature node --- ESP32-IDF_Temperture-Node-v2/main/hello_world_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 413217c4b..f25dc8146 100644 --- a/ESP32-IDF_Temperture-Node-v2/main/hello_world_main.c +++ b/ESP32-IDF_Temperture-Node-v2/main/hello_world_main.c @@ -65,8 +65,8 @@ void app_main(void) bme280_read_humidity(bme280, &humidity); bme280_read_pressure(bme280, &pressure); printf("Temperature: %.2f C\n", temperature); - printf("Temperature: %.2f \n", humidity); - printf("Temperature: %.2f kPa\n", pressure); + printf("Humidity: %.2f \n", humidity); + printf("Pressure: %.2f kPa\n", pressure); vTaskDelay(2000/portTICK_PERIOD_MS); }