aboutsummaryrefslogtreecommitdiff
path: root/mussel2
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2025-03-09 16:35:05 +0100
committerJonas Smedegaard <dr@jones.dk>2025-03-09 17:06:32 +0100
commit376b65cbef11511bf09f52376fd1b0d69ca6639e (patch)
treef729b10746c6fc9cd6858a43de4a68a80ae5fde3 /mussel2
parent0f33d88c94eafcfe980a56ab66d0d2c0e574968c (diff)
define MUSSEL_ATTITUDE (not DEVICE_NAME)
Diffstat (limited to 'mussel2')
-rw-r--r--mussel2/mussel2.ino4
1 files changed, 2 insertions, 2 deletions
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() {