From 937cb85141fdc6c4b27cfe92958a03f6d3b9e275 Mon Sep 17 00:00:00 2001 From: mattmcw Date: Sat, 17 Feb 2024 13:06:51 +0000 Subject: [PATCH] Rename encoder motor files drive motor (still broken). --- ino/contact_printer/ContactPrinter.h | 2 +- ino/contact_printer/{EncoderMotor.cpp => DriveMotor.cpp} | 0 ino/contact_printer/{EncoderMotor.h => DriveMotor.h} | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename ino/contact_printer/{EncoderMotor.cpp => DriveMotor.cpp} (100%) rename ino/contact_printer/{EncoderMotor.h => DriveMotor.h} (100%) diff --git a/ino/contact_printer/ContactPrinter.h b/ino/contact_printer/ContactPrinter.h index cf9e5d4..5322fb7 100644 --- a/ino/contact_printer/ContactPrinter.h +++ b/ino/contact_printer/ContactPrinter.h @@ -2,7 +2,7 @@ #define CONTACT_PRINTER #include -#include "EncoderMotor.h" +#include "DriveMotor.h" class ContactPrinter { diff --git a/ino/contact_printer/EncoderMotor.cpp b/ino/contact_printer/DriveMotor.cpp similarity index 100% rename from ino/contact_printer/EncoderMotor.cpp rename to ino/contact_printer/DriveMotor.cpp diff --git a/ino/contact_printer/EncoderMotor.h b/ino/contact_printer/DriveMotor.h similarity index 100% rename from ino/contact_printer/EncoderMotor.h rename to ino/contact_printer/DriveMotor.h