diff options
-rw-r--r-- | mussel1/mussel1.ino | 4 | ||||
-rw-r--r-- | mussel2/mussel2.ino | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/mussel1/mussel1.ino b/mussel1/mussel1.ino index 28c8097..7165b98 100644 --- a/mussel1/mussel1.ino +++ b/mussel1/mussel1.ino @@ -3,7 +3,7 @@ /// SPDX-License-Identifier: GPL-3.0-or-later /// SPDX-FileCopyrightText: 2025 Jonas Smedegaard <dr@jones.dk> -#define DEVICE_NAME "Current second is below 50" +#define MUSSEL_ATTITUDE "closed 10 seconds every 50 seconds" void setup() { Serial.begin(115200); @@ -12,7 +12,7 @@ void setup() { Serial.flush(); Serial.printf("Device ready: %s", - DEVICE_NAME); + MUSSEL_ATTITUDE); } void loop() { diff --git a/mussel2/mussel2.ino b/mussel2/mussel2.ino index dc0a298..652758a 100644 --- a/mussel2/mussel2.ino +++ b/mussel2/mussel2.ino @@ -3,7 +3,7 @@ /// SPDX-License-Identifier: GPL-3.0-or-later /// SPDX-FileCopyrightText: 2025 Jonas Smedegaard <dr@jones.dk> -#define DEVICE_NAME "Cycles of five good then one bad" +#define MUSSEL_ATTITUDE "closed 4 seconds every 8 seconds" void setup() { Serial.begin(115200); @@ -12,7 +12,7 @@ void setup() { Serial.flush(); Serial.printf("Device ready: %s", - DEVICE_NAME); + MUSSEL_ATTITUDE); } void loop() { |