firmware wip - didnt broke watering, just forgot a semicolone and was dumb
This commit is contained in:
parent
d2e264db56
commit
a690758476
2 changed files with 2 additions and 2 deletions
|
@ -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 {
|
||||||
|
|
|
@ -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";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue