From 6869b6f403ea7bf8a5623fa3af2e94fcbfc5e368 Mon Sep 17 00:00:00 2001 From: mattmcw Date: Mon, 19 Feb 2024 13:28:16 +0100 Subject: [PATCH] Add Serial output for debugging --- ino/contact_printer/contact_printer.ino | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ino/contact_printer/contact_printer.ino b/ino/contact_printer/contact_printer.ino index dff2834..640dd02 100644 --- a/ino/contact_printer/contact_printer.ino +++ b/ino/contact_printer/contact_printer.ino @@ -23,7 +23,7 @@ * 27 Drive Encoder A * 26 Drive Encoder B * - * 17 Start Button + * 15 Start Button * * 33 Lamp * @@ -32,7 +32,10 @@ ContactPrinter contact_printer; void setup () { + Serial.begin(115200); contact_printer.Setup(); + Serial.print("contact_printer v"); + Serial.println(VERSION); } void loop () { contact_printer.Loop();