firmware wip - didnt broke watering, just forgot a semicolone and was dumb

This commit is contained in:
Marcus 2024-09-19 02:22:46 +02:00
parent d2e264db56
commit a690758476
2 changed files with 2 additions and 2 deletions

View file

@ -661,7 +661,7 @@ void controlPUMP() {
// when PumpOnManuel is true, turn pump on for PumpOnTime seconds // when PumpOnManuel is true, turn pump on for PumpOnTime seconds
if(PumpOnManual == true) { if(PumpOnManual == true) {
if(PumpOnTimePassed < PumpOnTime) { if(PumpOnTimePassed < PumpOnTime) {
setOutput(3, 1) setOutput(3, 1);
//digitalWrite(PinPUMP, HIGH); //digitalWrite(PinPUMP, HIGH);
PumpOnTimePassed++; PumpOnTimePassed++;
} else { } else {

View file

@ -1,5 +1,5 @@
/* CanGrow_Version.h gets generated from cangrow.sh */ /* CanGrow_Version.h gets generated from cangrow.sh */
const char* CanGrowVer = "0.1-dev"; const char* CanGrowVer = "0.1-dev";
const char* CanGrowBuild = "56d9756-20240919020116"; const char* CanGrowBuild = "d2e264d-20240919022041";