Add Serial output for debugging
This commit is contained in:
parent
93a4418545
commit
6869b6f403
|
@ -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();
|
||||||
|
|
Loading…
Reference in New Issue