diff options
Diffstat (limited to 'mussel1')
-rw-r--r-- | mussel1/mussel1.ino | 4 |
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() { |