aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2025-03-04 18:43:57 +0100
committerJonas Smedegaard <dr@jones.dk>2025-03-04 18:43:57 +0100
commit51f5f7112d73e505b9a3ecf37c88884f68182373 (patch)
treee500a889789b1dd1a9b0d40bfffc1b241ffcf6f9
parent589ff74cb48d0cc6ddb09a4752739777453924de (diff)
double loop pace to every second
-rw-r--r--mussel1/mussel1.ino2
-rw-r--r--mussel2/mussel2.ino2
2 files changed, 2 insertions, 2 deletions
diff --git a/mussel1/mussel1.ino b/mussel1/mussel1.ino
index 86f0e07..679e225 100644
--- a/mussel1/mussel1.ino
+++ b/mussel1/mussel1.ino
@@ -27,5 +27,5 @@ void loop() {
Serial.printf("*** NOTIFY: %s ***\n", msg);
- delay(2000);
+ delay(1000);
}
diff --git a/mussel2/mussel2.ino b/mussel2/mussel2.ino
index a82fa2c..6ffb876 100644
--- a/mussel2/mussel2.ino
+++ b/mussel2/mussel2.ino
@@ -27,5 +27,5 @@ void loop() {
Serial.printf("*** NOTIFY: %s ***\n", msg);
- delay(2000);
+ delay(1000);
}