From 960699fbc8badaa36042991f0b4ef4f4155d5925 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Uribe=20Stengel?= Date: Thu, 23 Jul 2020 18:04:04 +0200 Subject: [PATCH] Set automatic light and irrigation initially to false. --- src/store.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/store.cpp b/src/store.cpp index 8a814aa..0207c12 100644 --- a/src/store.cpp +++ b/src/store.cpp @@ -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;