Fix return non-zero value in main

This commit is contained in:
2025-05-17 23:35:16 +02:00
parent 24c454aa88
commit 29ecd9be17
2 changed files with 2 additions and 1 deletions
+2 -1
View File
@@ -42,9 +42,10 @@ int main(void) {
//espSend(VASE_NUM, result) //espSend(VASE_NUM, result)
} }
// if(espGet("ask if i need to water plants") == true) {waterPlant()} // if(espGet("ask if i need to water plants") == true) {waterPlant()}
// or maybe it's better to do this with interrupts?
readSensors = false; readSensors = false;
enterSleep(); enterSleep();
} }
return 0; return -1;
} }
View File