From cd804452e42ba872ca8a7a6a772f4b105c0de706 Mon Sep 17 00:00:00 2001 From: jonny_ji7 Date: Sun, 17 Jul 2022 15:23:42 +0200 Subject: [PATCH] Change motorctl.handle from STATE to duty -100-100 For fading-down and delay-between-state-change to work correctly when switching between motorstates (e.g. FWD -> REV) the handle function was changed. using a duty value -100 for reverse 100% and +100 for forward 100% allows are more mathematical approach changes to motorctl.cpp: - convert state and duty to duty -100 to 100 when receiving target command at start - convert duty -100-100 back to state and duty at the end for applying motor commands --- main/motorctl.cpp | 38 ++++++++++++++++++++++++++++++++++---- 1 file changed, 34 insertions(+), 4 deletions(-) diff --git a/main/motorctl.cpp b/main/motorctl.cpp index 9746a9e..b0f8a2a 100644 --- a/main/motorctl.cpp +++ b/main/motorctl.cpp @@ -43,12 +43,28 @@ void controlledMotor::handle(){ ESP_LOGD(TAG, "Read command from queue: state=%s, duty=%.2f", motorstateStr[(int)commandReceive.state], commandReceive.duty); state = commandReceive.state; dutyTarget = commandReceive.duty; + + //--- convert duty --- + //define target duty (-100 to 100) from provided duty and motorstate + switch(commandReceive.state){ + case motorstate_t::BRAKE: + case motorstate_t::IDLE: + dutyTarget = 0; + break; + case motorstate_t::FWD: + dutyTarget = fabs(commandReceive.duty); + break; + case motorstate_t::REV: + dutyTarget = - fabs(commandReceive.duty); + break; + } } //--- calculate increment --- //calculate increment for fading UP with passed time since last run and configured fade time int64_t usPassed = esp_timer_get_time() - timestampLastRunUs; dutyIncrementUp = ( usPassed / ((float)config.msFadeUp * 1000) ) * 100; //TODO define maximum increment - first run after startup (or long) pause can cause a very large increment + //calculate increment for fading DOWN with passed time since last run and configured fade time if (config.msFadeDown > 0){ dutyIncrementDown = ( usPassed / ((float)config.msFadeDown * 1000) ) * 100; @@ -72,7 +88,7 @@ void controlledMotor::handle(){ // ESP_LOGV(TAG, "*setting to target*: target=%.2f%% - previous=%.2f%% ", dutyTarget, dutyNow); // dutyNow = dutyTarget; //set target duty //} - + //--- fade down --- } else { //target duty is lower than current duty -> fade down ESP_LOGV(TAG, "*fading up*: target=%.2f%% - previous=%.2f%% - increment=%.6f%% - usSinceLastRun=%d", dutyTarget, dutyNow, dutyIncrementDown, (int)usPassed); @@ -82,11 +98,25 @@ void controlledMotor::handle(){ dutyNow -= dutyIncrementDown; //decrease duty by increment } } - + //--- apply to motor --- + //convert duty -100 to 100 back to motorstate and duty 0-100 //apply target duty and state to motor driver - motor.set(state, dutyNow); - + //forward + if(dutyNow > 0){ + motor.set(motorstate_t::FWD, dutyNow); + } + //reverse + else if (dutyNow < 0){ + motor.set(motorstate_t::REV, fabs(dutyNow)); + } + //idle + //TODO: add BRAKE case!!! + else { + motor.set(motorstate_t::IDLE, 0); + } + + //--- update timestamp --- timestampLastRunUs = esp_timer_get_time(); //update timestamp last run with current timestamp in microseconds