aboutsummaryrefslogtreecommitdiff
path: root/mussel1/mussel1.ino
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 /mussel1/mussel1.ino
parent0f33d88c94eafcfe980a56ab66d0d2c0e574968c (diff)
define MUSSEL_ATTITUDE (not DEVICE_NAME)
Diffstat (limited to 'mussel1/mussel1.ino')
-rw-r--r--mussel1/mussel1.ino4
1 files changed, 2 insertions, 2 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() {