Skip to content

Commit 7941243

Browse files
committedMar 10, 2024·
Revert "negate leak sensors"
This reverts commit 338f365.
1 parent 122ccea commit 7941243

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎DPVController/leak.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ void leakSetup(){
1313
}
1414

1515
bool getLeakFront(){
16-
return digitalRead(PIN_LEAK_FRONT) == HIGH;
16+
return digitalRead(PIN_LEAK_FRONT) == LOW;
1717
}
1818
bool getLeakBack(){
19-
return digitalRead(PIN_LEAK_BACK) == HIGH;
19+
return digitalRead(PIN_LEAK_BACK) == LOW;
2020
}
2121

2222
void checkForLeak() {

0 commit comments

Comments
 (0)
Please sign in to comment.