diff options
author | Jonas Smedegaard <dr@jones.dk> | 2025-03-09 18:41:03 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2025-03-09 18:41:03 +0100 |
commit | 8d0212da635222b404113ad0ff5d469adf00ab6f (patch) | |
tree | 722bfe182a52b03c47b5ec8675672d2587328202 /mussel2 | |
parent | 5c377e98a60e0761c853d7b8c5dec8afc3663ef6 (diff) |
avoid padding for use with Serial Plotter
Diffstat (limited to 'mussel2')
-rw-r--r-- | mussel2/mussel2.ino | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |