This commit is contained in:
2025-10-10 00:27:32 -04:00
parent 27f242b578
commit cbbe61cd5c

View File

@@ -68,7 +68,7 @@ void read_sensors_task(void *arg)
bme280_read_temperature(bme280, &temperature);
bme280_read_humidity(bme280, &humidity);
bme280_read_pressure(bme280, &pressure);
vTaskDelay(2000/portTICK_PERIOD_MS);
vTaskDelay(1000/portTICK_PERIOD_MS);
}
}