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 c84095cef..74d66cbb6 100644 --- a/ESP32-IDF_Temperture-Node-v2/main/hello_world_main.c +++ b/ESP32-IDF_Temperture-Node-v2/main/hello_world_main.c @@ -79,7 +79,7 @@ void print_sensors_task(void *arg) { while (1) { // Print the values to the serial console - printf(" %.1f, %.2f, %.2f \n", temperature, humidity, pressure); + printf(" Temp: %.1f, Humidity: %.2f, Pressure: %.2f \n", temperature, humidity, pressure); vTaskDelay(2500/portTICK_PERIOD_MS); }