diff options
author | Jonas Smedegaard <dr@jones.dk> | 2025-03-04 11:07:31 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2025-03-04 11:07:31 +0100 |
commit | bc0941c2a03a7844f7717a32dace3b37b44d4341 (patch) | |
tree | fc7859ffc8bc4e891733f3e2ad90e0df9f4a33d7 /mussel1 | |
parent | 35d5353892fa72a8a8c7b107ca39d9525b2d01e8 (diff) |
fix set threshold at 50s (not 9s)
Diffstat (limited to 'mussel1')
-rw-r--r-- | mussel1/mussel1.ino | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mussel1/mussel1.ino b/mussel1/mussel1.ino index ead8be1..86f0e07 100644 --- a/mussel1/mussel1.ino +++ b/mussel1/mussel1.ino @@ -22,7 +22,7 @@ void loop() { unsigned long currentSecond = totalSeconds % 60; String msg = "good"; - if (currentSecond >= 9) + if (currentSecond >= 50) msg = "bad"; Serial.printf("*** NOTIFY: %s ***\n", msg); |