Set automatic light and irrigation initially to false.

This commit is contained in:
Andrés Uribe Stengel 2020-07-23 18:04:04 +02:00
parent f04624dccb
commit 960699fbc8

View File

@ -13,8 +13,8 @@ int soilSaturation = 69;
// Minimum light value before light turns on
int minimumLightValueLX = 50;
// Switches for automatic light and irrigation control
bool automaticLight = true;
bool automaticIrrigation = true;
bool automaticLight = false;
bool automaticIrrigation = false;
// Make sure device irrigates until fieldcapacity is reached
bool irrigateUntilFC = false;