Add support for non-idle default mode, Set startup mode ADJUST
This commit is contained in:
parent
fd1189bb2f
commit
a2b67c1a40
@ -135,7 +135,9 @@ motorctl_config_t configMotorControlRight = {
|
||||
//------- control config -------
|
||||
//------------------------------
|
||||
control_config_t configControl = {
|
||||
.defaultMode = controlMode_t::JOYSTICK, // default mode after startup and toggling IDLE
|
||||
.defaultMode = controlMode_t::ADJUST_CHAIR, // default mode after startup and toggling IDLE
|
||||
.idleAfterStartup = false, //when true: armchair is in IDLE mode after startup (2x press switches to defaultMode)
|
||||
//when false: immediately switches to active defaultMode after startup
|
||||
//--- timeouts ---
|
||||
.timeoutSwitchToIdleMs = 5 * 60 * 1000, // time of inactivity after which the mode gets switched to IDLE
|
||||
.timeoutNotifyPowerStillOnMs = 6 * 60 * 60 * 1000 // time in IDLE after which buzzer beeps in certain interval (notify "forgot to turn off")
|
||||
|
@ -88,6 +88,13 @@ controlledArmchair::controlledArmchair(
|
||||
|
||||
// create semaphore for preventing race condition: mode-change operations while currently still executing certain mode
|
||||
handleIteration_mutex = xSemaphoreCreateMutex();
|
||||
|
||||
//switch to default active mode if configured
|
||||
if (config.idleAfterStartup == false)
|
||||
{
|
||||
ESP_LOGI(TAG, "idleAfterStartup is disabled -> switching to configured default mode...");
|
||||
changeMode(config.defaultMode, true); //switch to default mode without beeping
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -434,7 +441,7 @@ void controlledArmchair::handleTimeout()
|
||||
//----------- changeMode ------------
|
||||
//-----------------------------------
|
||||
//function to change to a specified control mode
|
||||
void controlledArmchair::changeMode(controlMode_t modeNew)
|
||||
void controlledArmchair::changeMode(controlMode_t modeNew, bool noBeep)
|
||||
{
|
||||
// variable to store configured accel limit before entering massage mode, to restore it later
|
||||
static uint32_t massagePreviousAccel = motorLeft->getFade(fadeType_t::ACCEL);
|
||||
@ -472,7 +479,7 @@ void controlledArmchair::changeMode(controlMode_t modeNew)
|
||||
ESP_LOGI(TAG, "disabling debug output for 'evaluatedJoystick'");
|
||||
esp_log_level_set("evaluatedJoystick", ESP_LOG_WARN); // FIXME: loglevel from config
|
||||
#endif
|
||||
buzzer->beep(1, 200, 100);
|
||||
if (!noBeep) buzzer->beep(1, 200, 100);
|
||||
break;
|
||||
|
||||
case controlMode_t::HTTP:
|
||||
@ -523,7 +530,7 @@ void controlledArmchair::changeMode(controlMode_t modeNew)
|
||||
case controlMode_t::IDLE:
|
||||
ESP_LOGW(TAG, "switching to IDLE mode: turning both motors off, beep");
|
||||
idleBothMotors();
|
||||
buzzer->beep(1, 900, 0);
|
||||
if (!noBeep) buzzer->beep(1, 900, 0);
|
||||
break;
|
||||
|
||||
case controlMode_t::HTTP:
|
||||
@ -534,7 +541,7 @@ void controlledArmchair::changeMode(controlMode_t modeNew)
|
||||
case controlMode_t::ADJUST_CHAIR:
|
||||
ESP_LOGW(TAG, "switching to ADJUST_CHAIR mode: turning both motors off, beep");
|
||||
idleBothMotors();
|
||||
buzzer->beep(3, 100, 50);
|
||||
if (!noBeep) buzzer->beep(3, 100, 50);
|
||||
break;
|
||||
|
||||
case controlMode_t::MENU_SETTINGS:
|
||||
|
@ -29,6 +29,8 @@ extern const uint8_t controlModeMaxCount;
|
||||
//struct with config parameters
|
||||
typedef struct control_config_t {
|
||||
controlMode_t defaultMode; //default mode after startup and toggling IDLE
|
||||
bool idleAfterStartup; //when true: armchair is in IDLE mode after startup (2x press switches to defaultMode)
|
||||
//when false: immediately switches to active defaultMode after startup when set to false
|
||||
//timeout options
|
||||
uint32_t timeoutSwitchToIdleMs; //time of inactivity after which the mode gets switched to IDLE
|
||||
uint32_t timeoutNotifyPowerStillOnMs;
|
||||
@ -79,7 +81,7 @@ class controlledArmchair {
|
||||
void startHandleLoop();
|
||||
|
||||
//function that changes to a specified control mode
|
||||
void changeMode(controlMode_t modeNew);
|
||||
void changeMode(controlMode_t modeNew, bool noBeep = false);
|
||||
|
||||
//function that toggle between IDLE and previous active mode (or default if not switched to certain mode yet)
|
||||
void toggleIdle();
|
||||
|
Loading…
x
Reference in New Issue
Block a user