From 4109c6f2392caae986c6f6139a7be63e330c4336 Mon Sep 17 00:00:00 2001 From: jonny_ji7 Date: Thu, 9 Jun 2022 12:05:27 +0200 Subject: [PATCH] Add 'motorRight' instance and configuration --- main/config.cpp | 27 ++++++++++++++++++++------- main/config.hpp | 1 + 2 files changed, 21 insertions(+), 7 deletions(-) diff --git a/main/config.cpp b/main/config.cpp index c9cc667..bec50c7 100644 --- a/main/config.cpp +++ b/main/config.cpp @@ -3,11 +3,11 @@ //----------------------------------- //------- motor configuration ------- //----------------------------------- -//configure motor driver +//--- configure left motor --- single100a_config_t configDriverLeft = { - .gpio_pwm = GPIO_NUM_14, - .gpio_a = GPIO_NUM_12, - .gpio_b = GPIO_NUM_13, + .gpio_pwm = GPIO_NUM_26, + .gpio_a = GPIO_NUM_16, + .gpio_b = GPIO_NUM_4, .ledc_timer = LEDC_TIMER_0, .ledc_channel = LEDC_CHANNEL_0, .abInverted = true, @@ -15,14 +15,27 @@ single100a_config_t configDriverLeft = { .pwmFreq = 10000 }; +//--- configure right motor --- +single100a_config_t configDriverRight = { + .gpio_pwm = GPIO_NUM_27, + .gpio_a = GPIO_NUM_18, + .gpio_b = GPIO_NUM_14, + .ledc_timer = LEDC_TIMER_1, + .ledc_channel = LEDC_CHANNEL_1, + .abInverted = false, + .resolution = LEDC_TIMER_11_BIT, + .pwmFreq = 10000 +}; + //configure motor contol -motorctl_config_t configControlLeft = { +motorctl_config_t configMotorControl = { .msFade = 3000, .currentMax = 10 }; -//create controlled motor -controlledMotor motorLeft(configDriverLeft, configControlLeft); +//create controlled motor instances +controlledMotor motorLeft(configDriverLeft, configMotorControl); +controlledMotor motorRight(configDriverRight, configMotorControl); diff --git a/main/config.hpp b/main/config.hpp index e5bc45b..2789abc 100644 --- a/main/config.hpp +++ b/main/config.hpp @@ -6,6 +6,7 @@ //create global controlledMotor instances for both motors extern controlledMotor motorLeft; +extern controlledMotor motorRight; //create global joystic instance extern evaluatedJoystick joystick;