From 6ad50df2a7326faf786a8a16907707d39f05db4a Mon Sep 17 00:00:00 2001 From: Asbelos Date: Wed, 19 Aug 2020 20:02:37 +0100 Subject: [PATCH] Update MotorDrivers.h Firebox and fundo driver setups --- MotorDrivers.h | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/MotorDrivers.h b/MotorDrivers.h index 80b66cd..f31aeac 100644 --- a/MotorDrivers.h +++ b/MotorDrivers.h @@ -27,14 +27,17 @@ const byte UNUSED_PIN = 255; // Firebox Mk1 #define FIREBOX_MK1 \ - new MotorDriver(3, 6, 7, UNUSED_PIN, A5, ??, 5500, UNUSED_PIN), \ - new MotorDriver(4, 8, 9, UNUSED_PIN, A1, ??, 250 , UNUSED_PIN) + new MotorDriver(3, 6, 7, UNUSED_PIN, A5, 9.766, 5500, UNUSED_PIN), \ + new MotorDriver(4, 8, 9, UNUSED_PIN, A1, 5.00, 250 , UNUSED_PIN) // Firebox Mk1S #define FIREBOX_MK1S \ - new MotorDriver(24, 21, 22, 25, 23, ??, 5500, UNUSED_PIN), \ - new MotorDriver(30, 27, 28, 31, 29, ??, 250 , UNUSED_PIN) - + new MotorDriver(24, 21, 22, 25, 23, 9.766, 5500, UNUSED_PIN), \ + new MotorDriver(30, 27, 28, 31, 29, 5.00, 250 , UNUSED_PIN) +// FunduMoto Motor Shield +#define FUNDUMOTO_SHIELD \ + new MotorDriver(10 , 12, UNUSED_PIN, 9, A0, 2.99, 2000, UNUSED_PIN), \ + new MotorDriver(11, 13, UNUSED_PIN, UNUSED_PIN, A1, 2.99, 250 , UNUSED_PIN) #endif