From 8d0212da635222b404113ad0ff5d469adf00ab6f Mon Sep 17 00:00:00 2001 From: Jonas Smedegaard Date: Sun, 9 Mar 2025 18:41:03 +0100 Subject: avoid padding for use with Serial Plotter --- mussel1/mussel1.ino | 2 +- mussel2/mussel2.ino | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mussel1/mussel1.ino b/mussel1/mussel1.ino index e623798..7fac523 100644 --- a/mussel1/mussel1.ino +++ b/mussel1/mussel1.ino @@ -12,7 +12,7 @@ void setup() { } void loop() { - Serial.printf("gap: %d\n", read()); + Serial.printf("gap:%d\n", read()); delay(1000); } diff --git a/mussel2/mussel2.ino b/mussel2/mussel2.ino index 9e41448..90d8a47 100644 --- a/mussel2/mussel2.ino +++ b/mussel2/mussel2.ino @@ -12,7 +12,7 @@ void setup() { } void loop() { - Serial.printf("gap: %d\n", read()); + Serial.printf("gap:%d\n", read()); delay(1000); } -- cgit v1.2.3