Reduce save content frequency
This commit is contained in:
parent
19050fab18
commit
43384d9277
1 changed files with 8 additions and 4 deletions
|
@ -259,7 +259,7 @@ void printBmeSensorData()
|
||||||
renderer.drawVerticalLine(OledWidth - MaxTextWidth - 2, 0, OledPages - 1);
|
renderer.drawVerticalLine(OledWidth - MaxTextWidth - 2, 0, OledPages - 1);
|
||||||
|
|
||||||
if (iaqAccuracy == 0)
|
if (iaqAccuracy == 0)
|
||||||
snprintf(buffer, MaximumChars, "IAQ:---\n---ppm\n");
|
snprintf(buffer, MaximumChars, "IAQ:---\n----ppm\n");
|
||||||
else
|
else
|
||||||
snprintf(buffer, MaximumChars, "IAQ:%d\n%dppm\n",
|
snprintf(buffer, MaximumChars, "IAQ:%d\n%dppm\n",
|
||||||
static_cast<int>(iaq), //
|
static_cast<int>(iaq), //
|
||||||
|
@ -323,7 +323,11 @@ extern "C" void sensorTask(void *)
|
||||||
bmeSensorInit();
|
bmeSensorInit();
|
||||||
readStateFromEeprom();
|
readStateFromEeprom();
|
||||||
|
|
||||||
uint16_t counter = 0;
|
constexpr auto TaskDelay = 10;
|
||||||
|
constexpr auto SaveContentDelay = 12 * 60 * 60 * 1000;
|
||||||
|
constexpr auto SaveContentDelayCounts = SaveContentDelay / TaskDelay;
|
||||||
|
|
||||||
|
uint32_t counter = 0;
|
||||||
|
|
||||||
while (1)
|
while (1)
|
||||||
{
|
{
|
||||||
|
@ -331,13 +335,13 @@ extern "C" void sensorTask(void *)
|
||||||
bsecRun();
|
bsecRun();
|
||||||
printBmeSensorData();
|
printBmeSensorData();
|
||||||
|
|
||||||
if (counter++ >= 1000)
|
if (counter++ >= SaveContentDelayCounts)
|
||||||
{
|
{
|
||||||
counter = 0;
|
counter = 0;
|
||||||
initDisplay();
|
initDisplay();
|
||||||
writeStateToEeprom();
|
writeStateToEeprom();
|
||||||
}
|
}
|
||||||
|
|
||||||
vTaskDelay(pdMS_TO_TICKS(10));
|
vTaskDelay(pdMS_TO_TICKS(TaskDelay));
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue