Add longPressed case to button class, rework cmds
- slightly decrease msFadeDecel by 100ms - different approach in button.cpp for case last button press was long e.g. reworked commands: - 1x long press = restart - 1x short press = center stick, freeze - 1x short 1x long = run new auto commands - 2x short = toggle idle - change default minOnMs / minOffMs for evaulated switch class -> fix button presses sometimes not recognized
This commit is contained in:
parent
0148f69fab
commit
7b1b985a15
@ -22,8 +22,8 @@ extern "C"
|
|||||||
class gpio_evaluatedSwitch {
|
class gpio_evaluatedSwitch {
|
||||||
public:
|
public:
|
||||||
//--- input ---
|
//--- input ---
|
||||||
uint32_t minOnMs = 50;
|
uint32_t minOnMs = 30;
|
||||||
uint32_t minOffMs = 50;
|
uint32_t minOffMs = 30;
|
||||||
gpio_evaluatedSwitch( //constructor minimal (default parameters pullup=true, inverted=false)
|
gpio_evaluatedSwitch( //constructor minimal (default parameters pullup=true, inverted=false)
|
||||||
gpio_num_t gpio_num_declare
|
gpio_num_t gpio_num_declare
|
||||||
);
|
);
|
||||||
|
132
main/button.cpp
132
main/button.cpp
@ -36,7 +36,7 @@ buttonCommands::buttonCommands(gpio_evaluatedSwitch * button_f, evaluatedJoystic
|
|||||||
//--------- action -----------
|
//--------- action -----------
|
||||||
//----------------------------
|
//----------------------------
|
||||||
//function that runs commands depending on a count value
|
//function that runs commands depending on a count value
|
||||||
void buttonCommands::action (uint8_t count){
|
void buttonCommands::action (uint8_t count, bool lastPressLong){
|
||||||
//--- variable declarations ---
|
//--- variable declarations ---
|
||||||
bool decelEnabled; //for different beeping when toggling
|
bool decelEnabled; //for different beeping when toggling
|
||||||
commandSimple_t cmds[8]; //array for commands for automatedArmchair
|
commandSimple_t cmds[8]; //array for commands for automatedArmchair
|
||||||
@ -52,69 +52,77 @@ void buttonCommands::action (uint8_t count){
|
|||||||
buzzer->beep(3, 400, 100);
|
buzzer->beep(3, 400, 100);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 0: //special case when last button press is longer than timeout (>1s)
|
|
||||||
ESP_LOGW(TAG, "RESTART");
|
|
||||||
buzzer->beep(1,1000,1);
|
|
||||||
vTaskDelay(1000 / portTICK_PERIOD_MS);
|
|
||||||
esp_restart();
|
|
||||||
|
|
||||||
case 1:
|
case 1:
|
||||||
////////ESP_LOGW(TAG, "cmd %d: sending button event to control task", count);
|
//restart contoller when 1x long pressed
|
||||||
//////////-> define joystick center or toggle freeze input (executed in control task)
|
if (lastPressLong){
|
||||||
////////control->sendButtonEvent(count); //TODO: always send button event to control task (not just at count=1) -> control.cpp has to be changed
|
ESP_LOGW(TAG, "RESTART");
|
||||||
//====== TESTING: send cmd to auto mode =====
|
buzzer->beep(1,1000,1);
|
||||||
//define commands
|
vTaskDelay(1000 / portTICK_PERIOD_MS);
|
||||||
cmds[0] =
|
esp_restart();
|
||||||
{
|
return;
|
||||||
.motorCmds = {
|
}
|
||||||
.left = {motorstate_t::REV, 90},
|
|
||||||
.right = {motorstate_t::REV, 90}
|
|
||||||
},
|
|
||||||
.msDuration = 1200,
|
|
||||||
.fadeDecel = 800,
|
|
||||||
.fadeAccel = 1300,
|
|
||||||
.instruction = auto_instruction_t::NONE
|
|
||||||
};
|
|
||||||
cmds[1] =
|
|
||||||
{
|
|
||||||
.motorCmds = {
|
|
||||||
.left = {motorstate_t::FWD, 70},
|
|
||||||
.right = {motorstate_t::FWD, 70}
|
|
||||||
},
|
|
||||||
.msDuration = 70,
|
|
||||||
.fadeDecel = 0,
|
|
||||||
.fadeAccel = 300,
|
|
||||||
.instruction = auto_instruction_t::NONE
|
|
||||||
};
|
|
||||||
cmds[2] =
|
|
||||||
{
|
|
||||||
.motorCmds = {
|
|
||||||
.left = {motorstate_t::IDLE, 0},
|
|
||||||
.right = {motorstate_t::IDLE, 0}
|
|
||||||
},
|
|
||||||
.msDuration = 10,
|
|
||||||
.fadeDecel = 800,
|
|
||||||
.fadeAccel = 1300,
|
|
||||||
.instruction = auto_instruction_t::SWITCH_JOYSTICK_MODE
|
|
||||||
};
|
|
||||||
|
|
||||||
//send commands to automatedArmchair command queue
|
ESP_LOGW(TAG, "cmd %d: sending button event to control task", count);
|
||||||
armchair.addCommands(cmds, 3);
|
//-> define joystick center or toggle freeze input (executed in control task)
|
||||||
|
control->sendButtonEvent(count); //TODO: always send button event to control task (not just at count=1) -> control.cpp has to be changed
|
||||||
//change mode to AUTO
|
|
||||||
control->changeMode(controlMode_t::AUTO);
|
|
||||||
break;
|
break;
|
||||||
|
case 2:
|
||||||
|
//run automatic commands to lift leg support when pressed 1x short 1x long
|
||||||
|
if (lastPressLong){
|
||||||
|
//define commands
|
||||||
|
cmds[0] =
|
||||||
|
{
|
||||||
|
.motorCmds = {
|
||||||
|
.left = {motorstate_t::REV, 90},
|
||||||
|
.right = {motorstate_t::REV, 90}
|
||||||
|
},
|
||||||
|
.msDuration = 1200,
|
||||||
|
.fadeDecel = 800,
|
||||||
|
.fadeAccel = 1300,
|
||||||
|
.instruction = auto_instruction_t::NONE
|
||||||
|
};
|
||||||
|
cmds[1] =
|
||||||
|
{
|
||||||
|
.motorCmds = {
|
||||||
|
.left = {motorstate_t::FWD, 70},
|
||||||
|
.right = {motorstate_t::FWD, 70}
|
||||||
|
},
|
||||||
|
.msDuration = 70,
|
||||||
|
.fadeDecel = 0,
|
||||||
|
.fadeAccel = 300,
|
||||||
|
.instruction = auto_instruction_t::NONE
|
||||||
|
};
|
||||||
|
cmds[2] =
|
||||||
|
{
|
||||||
|
.motorCmds = {
|
||||||
|
.left = {motorstate_t::IDLE, 0},
|
||||||
|
.right = {motorstate_t::IDLE, 0}
|
||||||
|
},
|
||||||
|
.msDuration = 10,
|
||||||
|
.fadeDecel = 800,
|
||||||
|
.fadeAccel = 1300,
|
||||||
|
.instruction = auto_instruction_t::SWITCH_JOYSTICK_MODE
|
||||||
|
};
|
||||||
|
|
||||||
|
//send commands to automatedArmchair command queue
|
||||||
|
armchair.addCommands(cmds, 3);
|
||||||
|
|
||||||
|
//change mode to AUTO
|
||||||
|
control->changeMode(controlMode_t::AUTO);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
//toggle idle when 2x pressed
|
||||||
|
ESP_LOGW(TAG, "cmd %d: toggle IDLE", count);
|
||||||
|
control->toggleIdle(); //toggle between idle and previous/default mode
|
||||||
|
break;
|
||||||
|
|
||||||
|
|
||||||
case 3:
|
case 3:
|
||||||
ESP_LOGW(TAG, "cmd %d: switch to JOYSTICK", count);
|
ESP_LOGW(TAG, "cmd %d: switch to JOYSTICK", count);
|
||||||
control->changeMode(controlMode_t::JOYSTICK); //switch to JOYSTICK mode
|
control->changeMode(controlMode_t::JOYSTICK); //switch to JOYSTICK mode
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 2:
|
|
||||||
ESP_LOGW(TAG, "cmd %d: toggle IDLE", count);
|
|
||||||
control->toggleIdle(); //toggle between idle and previous/default mode
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 4:
|
case 4:
|
||||||
ESP_LOGW(TAG, "cmd %d: toggle between HTTP and JOYSTICK", count);
|
ESP_LOGW(TAG, "cmd %d: toggle between HTTP and JOYSTICK", count);
|
||||||
control->toggleModes(controlMode_t::HTTP, controlMode_t::JOYSTICK); //toggle between HTTP and JOYSTICK mode
|
control->toggleModes(controlMode_t::HTTP, controlMode_t::JOYSTICK); //toggle between HTTP and JOYSTICK mode
|
||||||
@ -166,7 +174,7 @@ void buttonCommands::startHandleLoop() {
|
|||||||
case inputState_t::IDLE: //wait for initial button press
|
case inputState_t::IDLE: //wait for initial button press
|
||||||
if (button->risingEdge) {
|
if (button->risingEdge) {
|
||||||
count = 1;
|
count = 1;
|
||||||
buzzer->beep(1, 60, 0);
|
buzzer->beep(1, 65, 0);
|
||||||
timestamp_lastAction = esp_log_timestamp();
|
timestamp_lastAction = esp_log_timestamp();
|
||||||
state = inputState_t::WAIT_FOR_INPUT;
|
state = inputState_t::WAIT_FOR_INPUT;
|
||||||
ESP_LOGI(TAG, "first button press detected -> waiting for further events");
|
ESP_LOGI(TAG, "first button press detected -> waiting for further events");
|
||||||
@ -177,7 +185,7 @@ void buttonCommands::startHandleLoop() {
|
|||||||
//button pressed again
|
//button pressed again
|
||||||
if (button->risingEdge){
|
if (button->risingEdge){
|
||||||
count++;
|
count++;
|
||||||
buzzer->beep(1, 60, 0);
|
buzzer->beep(1, 65, 0);
|
||||||
timestamp_lastAction = esp_log_timestamp();
|
timestamp_lastAction = esp_log_timestamp();
|
||||||
ESP_LOGI(TAG, "another press detected -> count=%d -> waiting for further events", count);
|
ESP_LOGI(TAG, "another press detected -> count=%d -> waiting for further events", count);
|
||||||
}
|
}
|
||||||
@ -189,14 +197,14 @@ void buttonCommands::startHandleLoop() {
|
|||||||
ESP_LOGI(TAG, "timeout - running action function for count=%d", count);
|
ESP_LOGI(TAG, "timeout - running action function for count=%d", count);
|
||||||
//--- run action function ---
|
//--- run action function ---
|
||||||
//check if still pressed
|
//check if still pressed
|
||||||
|
bool lastPressLong = false;
|
||||||
if (button->state == true){
|
if (button->state == true){
|
||||||
//run special case when last press was longer than timeout
|
//run special case when last press was longer than timeout
|
||||||
action(0);
|
lastPressLong = true;
|
||||||
} else {
|
}
|
||||||
//run action function with current count of button presses
|
//run action function with current count of button presses
|
||||||
action(count);
|
action(count, lastPressLong);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -33,7 +33,7 @@ class buttonCommands {
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
//--- functions ---
|
//--- functions ---
|
||||||
void action(uint8_t count);
|
void action(uint8_t count, bool lastPressLong);
|
||||||
|
|
||||||
//--- objects ---
|
//--- objects ---
|
||||||
gpio_evaluatedSwitch* button;
|
gpio_evaluatedSwitch* button;
|
||||||
|
@ -30,7 +30,7 @@ single100a_config_t configDriverRight = {
|
|||||||
//--- configure motor contol ---
|
//--- configure motor contol ---
|
||||||
motorctl_config_t configMotorControl = {
|
motorctl_config_t configMotorControl = {
|
||||||
.msFadeAccel = 1300, //acceleration of the motor (ms it takes from 0% to 100%)
|
.msFadeAccel = 1300, //acceleration of the motor (ms it takes from 0% to 100%)
|
||||||
.msFadeDecel = 800, //deceleration of the motor (ms it takes from 100% to 0%)
|
.msFadeDecel = 700, //deceleration of the motor (ms it takes from 100% to 0%)
|
||||||
.currentMax = 10
|
.currentMax = 10
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user