mirror of
https://github.com/revspace/operame
synced 2025-12-13 16:06:30 +00:00
add "first boot" check
This commit is contained in:
parent
f6acffac8f
commit
6da553be6f
1 changed files with 9 additions and 0 deletions
|
|
@ -561,7 +561,16 @@ void loop() {
|
|||
static int co2;
|
||||
static float h;
|
||||
static float t;
|
||||
static bool first_boot = true;
|
||||
|
||||
if(first_boot)
|
||||
{
|
||||
co2 = get_co2();
|
||||
h = dht.readHumidity();
|
||||
t = dht.readTemperature();
|
||||
first_boot = false;
|
||||
}
|
||||
|
||||
every(60000) {
|
||||
// Read CO2, humidity and temperature
|
||||
co2 = get_co2();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue