control: - reset timeout on user input only -> drop reset on changed motor duty - add timeoutNotifyPowerStillOnMs -> when forgotten to turn off the power the buzzer beeps a few times every 30 minutes - Add/fix JOYSTICK_LOG_IN_IDLE option remove empty config.hpp
91 lines
3.2 KiB
C++
91 lines
3.2 KiB
C++
#include "auto.hpp"
|
|
|
|
//tag for logging
|
|
static const char * TAG = "automatedArmchair";
|
|
|
|
|
|
//=============================
|
|
//======== constructor ========
|
|
//=============================
|
|
automatedArmchair_c::automatedArmchair_c(controlledMotor *motorLeft_f, controlledMotor *motorRight_f)
|
|
{
|
|
motorLeft = motorLeft_f;
|
|
motorRight = motorRight_f;
|
|
// create command queue
|
|
commandQueue = xQueueCreate(32, sizeof(commandSimple_t)); // TODO add max size to config?
|
|
}
|
|
|
|
|
|
|
|
//==============================
|
|
//====== generateCommands ======
|
|
//==============================
|
|
motorCommands_t automatedArmchair_c::generateCommands(auto_instruction_t * instruction) {
|
|
//reset instruction
|
|
*instruction = auto_instruction_t::NONE;
|
|
//check if previous command is finished
|
|
if ( esp_log_timestamp() > timestampCmdFinished ) {
|
|
//get next command from queue
|
|
if( xQueueReceive( commandQueue, &cmdCurrent, pdMS_TO_TICKS(500) ) ) {
|
|
ESP_LOGI(TAG, "running next command from queue...");
|
|
//copy instruction to be provided to control task
|
|
*instruction = cmdCurrent.instruction;
|
|
//set acceleration / fading parameters according to command
|
|
motorLeft->setFade(fadeType_t::DECEL, cmdCurrent.fadeDecel);
|
|
motorRight->setFade(fadeType_t::DECEL, cmdCurrent.fadeDecel);
|
|
motorLeft->setFade(fadeType_t::ACCEL, cmdCurrent.fadeAccel);
|
|
motorRight->setFade(fadeType_t::ACCEL, cmdCurrent.fadeAccel);
|
|
//calculate timestamp the command is finished
|
|
timestampCmdFinished = esp_log_timestamp() + cmdCurrent.msDuration;
|
|
//copy the new commands
|
|
motorCommands = cmdCurrent.motorCmds;
|
|
} else { //queue empty
|
|
ESP_LOGD(TAG, "no new command in queue -> set motors to IDLE");
|
|
motorCommands = motorCmds_bothMotorsIdle;
|
|
}
|
|
} else { //previous command still running
|
|
ESP_LOGD(TAG, "command still running -> no change");
|
|
}
|
|
|
|
//TODO also return instructions via call by reference
|
|
return motorCommands;
|
|
}
|
|
|
|
|
|
|
|
//============================
|
|
//======== addCommand ========
|
|
//============================
|
|
//function that adds a basic command to the queue
|
|
void automatedArmchair_c::addCommand(commandSimple_t command) {
|
|
//add command to queue
|
|
if ( xQueueSend( commandQueue, ( void * )&command, ( TickType_t ) 0 ) ){
|
|
ESP_LOGI(TAG, "Successfully inserted command to queue");
|
|
} else {
|
|
ESP_LOGE(TAG, "Failed to insert new command to queue");
|
|
}
|
|
}
|
|
|
|
void automatedArmchair_c::addCommands(commandSimple_t commands[], size_t count) {
|
|
for (int i = 0; i < count; i++) {
|
|
ESP_LOGI(TAG, "Reading command no. %d from provided array", i);
|
|
addCommand(commands[i]);
|
|
}
|
|
}
|
|
|
|
|
|
//===============================
|
|
//======== clearCommands ========
|
|
//===============================
|
|
//function that deletes all pending/queued commands
|
|
//e.g. when switching modes
|
|
motorCommands_t automatedArmchair_c::clearCommands() {
|
|
//clear command queue
|
|
xQueueReset( commandQueue );
|
|
ESP_LOGW(TAG, "command queue was successfully emptied");
|
|
//return commands for idling both motors
|
|
motorCommands = motorCmds_bothMotorsIdle;
|
|
return motorCmds_bothMotorsIdle;
|
|
}
|
|
|