Add Serial output for debugging

This commit is contained in:
Matt McWilliams 2024-02-19 13:28:16 +01:00
parent 93a4418545
commit 6869b6f403
1 changed files with 4 additions and 1 deletions

View File

@ -23,7 +23,7 @@
* 27 Drive Encoder A * 27 Drive Encoder A
* 26 Drive Encoder B * 26 Drive Encoder B
* *
* 17 Start Button * 15 Start Button
* *
* 33 Lamp * 33 Lamp
* *
@ -32,7 +32,10 @@
ContactPrinter contact_printer; ContactPrinter contact_printer;
void setup () { void setup () {
Serial.begin(115200);
contact_printer.Setup(); contact_printer.Setup();
Serial.print("contact_printer v");
Serial.println(VERSION);
} }
void loop () { void loop () {
contact_printer.Loop(); contact_printer.Loop();