From bc0941c2a03a7844f7717a32dace3b37b44d4341 Mon Sep 17 00:00:00 2001 From: Jonas Smedegaard Date: Tue, 4 Mar 2025 11:07:31 +0100 Subject: fix set threshold at 50s (not 9s) --- mussel1/mussel1.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v1.2.3