Optimize auto-cut delay
Optimize delay to auto cut by adding a new state AUTO_CUT_WAITING this removes some confusing / unnecessary complex code
This commit is contained in:
parent
826dd983c4
commit
2cf1762569
File diff suppressed because one or more lines are too long
@ -30,7 +30,7 @@ QueueHandle_t init_encoder(rotary_encoder_info_t * info){
|
|||||||
//====================
|
//====================
|
||||||
static const char *TAG = "control"; //tag for logging
|
static const char *TAG = "control"; //tag for logging
|
||||||
|
|
||||||
const char* systemStateStr[6] = {"COUNTING", "WINDING_START", "WINDING", "TARGET_REACHED", "CUTTING", "MANUAL"};
|
const char* systemStateStr[7] = {"COUNTING", "WINDING_START", "WINDING", "TARGET_REACHED", "AUTO_CUT_WAITING", "CUTTING", "MANUAL"};
|
||||||
systemState_t controlState = systemState_t::COUNTING;
|
systemState_t controlState = systemState_t::COUNTING;
|
||||||
uint32_t timestamp_changedState = 0;
|
uint32_t timestamp_changedState = 0;
|
||||||
|
|
||||||
@ -57,7 +57,6 @@ int cut_msRemaining = 0;
|
|||||||
uint32_t timestamp_cut_lastBeep = 0;
|
uint32_t timestamp_cut_lastBeep = 0;
|
||||||
uint32_t autoCut_delayMs = 3000; //TODO add this to config
|
uint32_t autoCut_delayMs = 3000; //TODO add this to config
|
||||||
bool autoCutEnabled = false; //store state of toggle switch (no hotswitch)
|
bool autoCutEnabled = false; //store state of toggle switch (no hotswitch)
|
||||||
bool autoCutWaiting = false; //currently waiting (for display)
|
|
||||||
|
|
||||||
|
|
||||||
//===== change State =====
|
//===== change State =====
|
||||||
@ -89,9 +88,6 @@ bool handleStopCondition(handledDisplay * displayTop, handledDisplay * displayBo
|
|||||||
displayTop->blink(1, 0, 1000, " S0LL ");
|
displayTop->blink(1, 0, 1000, " S0LL ");
|
||||||
displayBot->blink(1, 0, 1000, "ERREICHT");
|
displayBot->blink(1, 0, 1000, "ERREICHT");
|
||||||
buzzer.beep(2, 100, 100);
|
buzzer.beep(2, 100, 100);
|
||||||
//store current state once at change to TARGET_REACHED
|
|
||||||
//(prevent unwanted cut when enabling while already TARGET_REACHED state)
|
|
||||||
autoCutEnabled = SW_AUTO_CUT.state;
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
//start button released
|
//start button released
|
||||||
@ -226,12 +222,24 @@ void task_control(void *pvParameter)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//--- beep at AUTO_CUT toggle ---
|
//--- AUTO_CUT toggle sw ---
|
||||||
|
//beep at change
|
||||||
if (SW_AUTO_CUT.risingEdge){
|
if (SW_AUTO_CUT.risingEdge){
|
||||||
buzzer.beep(2, 100, 50);
|
buzzer.beep(2, 100, 50);
|
||||||
} else if (SW_AUTO_CUT.fallingEdge) {
|
} else if (SW_AUTO_CUT.fallingEdge) {
|
||||||
buzzer.beep(1, 400, 50);
|
buzzer.beep(1, 400, 50);
|
||||||
}
|
}
|
||||||
|
//update enabled state
|
||||||
|
if (SW_AUTO_CUT.state) {
|
||||||
|
//enable autocut when not in target_reached state
|
||||||
|
//(prevent immediate/unexpected cut)
|
||||||
|
if (controlState != systemState_t::TARGET_REACHED){
|
||||||
|
autoCutEnabled = true;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
//disable anytime (also stops countdown to auto cut)
|
||||||
|
autoCutEnabled = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//--- manual mode ---
|
//--- manual mode ---
|
||||||
@ -333,10 +341,10 @@ void task_control(void *pvParameter)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case systemState_t::WINDING: //wind fast, slow down when close
|
case systemState_t::WINDING: //wind fast, slow down when close
|
||||||
//set vfd speed depending on remaining distance
|
//set vfd speed depending on remaining distance
|
||||||
setDynSpeedLvl(); //slow down when close to target
|
setDynSpeedLvl(); //slow down when close to target
|
||||||
handleStopCondition(&displayTop, &displayBot); //stops if button released or target reached
|
handleStopCondition(&displayTop, &displayBot); //stops if button released or target reached
|
||||||
//TODO: cancel when there is no cable movement anymore e.g. empty / timeout?
|
//TODO: cancel when there is no cable movement anymore e.g. empty / timeout?
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case systemState_t::TARGET_REACHED:
|
case systemState_t::TARGET_REACHED:
|
||||||
@ -344,32 +352,11 @@ void task_control(void *pvParameter)
|
|||||||
//switch to counting state when no longer at or above target length
|
//switch to counting state when no longer at or above target length
|
||||||
if ( lengthRemaining > 10 ) { //FIXME: require reset switch to be able to restart? or evaluate a tolerance here?
|
if ( lengthRemaining > 10 ) { //FIXME: require reset switch to be able to restart? or evaluate a tolerance here?
|
||||||
changeState(systemState_t::COUNTING);
|
changeState(systemState_t::COUNTING);
|
||||||
autoCutWaiting = false;
|
|
||||||
}
|
}
|
||||||
//handle delayed cutting if automatic cut is enabled
|
//switch initiate countdown to auto-cut
|
||||||
else if ( (autoCutEnabled == true)
|
else if ( (autoCutEnabled)
|
||||||
&& (esp_log_timestamp() - timestamp_changedState > 300) ){ //wait for dislay msg "reached" to finish
|
&& (esp_log_timestamp() - timestamp_changedState > 300) ){ //wait for dislay msg "reached" to finish
|
||||||
autoCutWaiting = true; //display countdown
|
changeState(systemState_t::AUTO_CUT_WAITING);
|
||||||
cut_msRemaining = autoCut_delayMs - (esp_log_timestamp() - timestamp_changedState);
|
|
||||||
//- beep countdown -
|
|
||||||
//time passed since last beep > time remaining / 10
|
|
||||||
if ( (esp_log_timestamp() - timestamp_cut_lastBeep) > (cut_msRemaining / 6)
|
|
||||||
&& (esp_log_timestamp() - timestamp_cut_lastBeep) > 50 ){ //dont trigger beeps faster than beep time
|
|
||||||
buzzer.beep(1, 50, 0);
|
|
||||||
timestamp_cut_lastBeep = esp_log_timestamp();
|
|
||||||
}
|
|
||||||
//- cancel countdown with AUTO_CUT off -
|
|
||||||
if (!SW_AUTO_CUT.state) { //note: stop button also works
|
|
||||||
autoCutWaiting = false;
|
|
||||||
autoCutEnabled = false;
|
|
||||||
}
|
|
||||||
//- trigger cut if delay passed -
|
|
||||||
else if (cut_msRemaining <= 0){
|
|
||||||
cut_msRemaining = 0; //prevent negative number on display
|
|
||||||
cutter_start();
|
|
||||||
changeState(systemState_t::CUTTING);
|
|
||||||
autoCutWaiting = false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
//show msg when trying to start, but target is reached
|
//show msg when trying to start, but target is reached
|
||||||
if (SW_START.risingEdge){
|
if (SW_START.risingEdge){
|
||||||
@ -379,8 +366,29 @@ void task_control(void *pvParameter)
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case systemState_t::AUTO_CUT_WAITING:
|
||||||
|
//handle delayed start of cut
|
||||||
|
cut_msRemaining = autoCut_delayMs - (esp_log_timestamp() - timestamp_changedState);
|
||||||
|
//- countdown stop conditions -
|
||||||
|
if (!autoCutEnabled || !SW_AUTO_CUT.state || SW_RESET.state || SW_CUT.state){ //TODO: also stop when target not reached anymore?
|
||||||
|
changeState(systemState_t::COUNTING);
|
||||||
|
}
|
||||||
|
//- trigger cut if delay passed -
|
||||||
|
else if (cut_msRemaining <= 0){
|
||||||
|
cutter_start();
|
||||||
|
changeState(systemState_t::CUTTING);
|
||||||
|
}
|
||||||
|
//- beep countdown -
|
||||||
|
//time passed since last beep > time remaining / 6
|
||||||
|
else if ( (esp_log_timestamp() - timestamp_cut_lastBeep) > (cut_msRemaining / 6)
|
||||||
|
&& (esp_log_timestamp() - timestamp_cut_lastBeep) > 50 ){ //dont trigger beeps faster than beep time
|
||||||
|
buzzer.beep(1, 50, 0);
|
||||||
|
timestamp_cut_lastBeep = esp_log_timestamp();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
case systemState_t::CUTTING:
|
case systemState_t::CUTTING:
|
||||||
//exit if finished cutting
|
//exit when finished cutting
|
||||||
if (cutter_isRunning() == false){
|
if (cutter_isRunning() == false){
|
||||||
//TODO stop if start buttons released?
|
//TODO stop if start buttons released?
|
||||||
changeState(systemState_t::COUNTING);
|
changeState(systemState_t::COUNTING);
|
||||||
@ -453,7 +461,7 @@ void task_control(void *pvParameter)
|
|||||||
//run handle function
|
//run handle function
|
||||||
displayTop.handle();
|
displayTop.handle();
|
||||||
//indicate upcoming cut when pending
|
//indicate upcoming cut when pending
|
||||||
if (autoCutWaiting == true){
|
if (controlState == systemState_t::AUTO_CUT_WAITING){
|
||||||
displayTop.blinkStrings(" CUT 1N ", " ", 70, 30);
|
displayTop.blinkStrings(" CUT 1N ", " ", 70, 30);
|
||||||
}
|
}
|
||||||
//otherwise show current position
|
//otherwise show current position
|
||||||
@ -485,7 +493,7 @@ void task_control(void *pvParameter)
|
|||||||
displayBot.blinkStrings("CUTTING]", "CUTTING[", 100, 100);
|
displayBot.blinkStrings("CUTTING]", "CUTTING[", 100, 100);
|
||||||
}
|
}
|
||||||
//show ms countdown to cut when pending
|
//show ms countdown to cut when pending
|
||||||
else if (autoCutWaiting == true) {
|
else if (controlState == systemState_t::AUTO_CUT_WAITING){
|
||||||
sprintf(buf_disp2, " %04d ", cut_msRemaining);
|
sprintf(buf_disp2, " %04d ", cut_msRemaining);
|
||||||
//displayBot.showString(buf_disp2); //TODO:blink "erreicht" overrides this. for now using blink as workaround
|
//displayBot.showString(buf_disp2); //TODO:blink "erreicht" overrides this. for now using blink as workaround
|
||||||
displayBot.blinkStrings(buf_disp2, buf_disp2, 100, 100);
|
displayBot.blinkStrings(buf_disp2, buf_disp2, 100, 100);
|
||||||
|
@ -26,8 +26,8 @@ extern "C"
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
enum class systemState_t {COUNTING, WINDING_START, WINDING, TARGET_REACHED, CUTTING, MANUAL};
|
enum class systemState_t {COUNTING, WINDING_START, WINDING, TARGET_REACHED, AUTO_CUT_WAITING, CUTTING, MANUAL};
|
||||||
extern const char* systemStateStr[6];
|
extern const char* systemStateStr[7];
|
||||||
|
|
||||||
|
|
||||||
void task_control(void *pvParameter);
|
void task_control(void *pvParameter);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user