This commit is contained in:
2025-10-10 00:40:19 -04:00
parent 46b3b0c161
commit 8c19997361

View File

@@ -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);
}