Minor fixes + optimizations - test success
This commit is contained in:
parent
946fdd6c15
commit
c19d053867
@ -182,9 +182,9 @@ void buttonCommands::action (uint8_t count, bool lastPressLong){
|
|||||||
// when not in MENU_SETTINGS mode, repeatedly receives events from encoder button
|
// when not in MENU_SETTINGS mode, repeatedly receives events from encoder button
|
||||||
// and takes the corresponding action
|
// and takes the corresponding action
|
||||||
// this function has to be started once in a separate task
|
// this function has to be started once in a separate task
|
||||||
#define INPUT_TIMEOUT 500 // duration of no button events, after which action is run (implicitly also is 'long-press' time)
|
#define INPUT_TIMEOUT 600 // duration of no button events, after which action is run (implicitly also is 'long-press' time)
|
||||||
#define IGNORE_BUTTON_TIME_SINCE_LAST_ROTATE 800 // time that has to be passed since last encoder rotate click for button count command to be accepted (e.g. prevent long press action after PRESS+ROTATE was used)
|
#define IGNORE_BUTTON_TIME_SINCE_LAST_ROTATE 800 // time that has to be passed since last encoder rotate click for button count command to be accepted (e.g. prevent long press action after PRESS+ROTATE was used)
|
||||||
#define IGNORE_ROTATE_COUNT 2 //amount of ignored clicks before action is actually taken (ignore accidental touches)
|
#define IGNORE_ROTATE_COUNT 1 //amount of ignored clicks before action is actually taken (ignore accidental touches)
|
||||||
void buttonCommands::startHandleLoop()
|
void buttonCommands::startHandleLoop()
|
||||||
{
|
{
|
||||||
//-- variables --
|
//-- variables --
|
||||||
@ -226,7 +226,7 @@ void buttonCommands::startHandleLoop()
|
|||||||
break;
|
break;
|
||||||
case RE_ET_CHANGED:
|
case RE_ET_CHANGED:
|
||||||
// ignore first clicks
|
// ignore first clicks
|
||||||
if (++rotateCount < IGNORE_ROTATE_COUNT)
|
if (rotateCount++ < IGNORE_ROTATE_COUNT)
|
||||||
{
|
{
|
||||||
buzzer->beep(1, 60, 0);
|
buzzer->beep(1, 60, 0);
|
||||||
break;
|
break;
|
||||||
@ -245,8 +245,8 @@ void buttonCommands::startHandleLoop()
|
|||||||
backRest->setTargetPercent(backRest->getTargetPercent() + 5);
|
backRest->setTargetPercent(backRest->getTargetPercent() + 5);
|
||||||
// show temporary notification on display
|
// show temporary notification on display
|
||||||
char buf[8];
|
char buf[8];
|
||||||
snprintf(buf, 8, "%.1f%%", backRest->getTargetPercent());
|
snprintf(buf, 8, "%.0f%%", backRest->getTargetPercent());
|
||||||
display_showNotification(1000, "moving Rest:", "LEG", buf);
|
display_showNotification(2500, "moving Rest:", "BACK", buf);
|
||||||
}
|
}
|
||||||
//### adjust leg support when ROTATED ###
|
//### adjust leg support when ROTATED ###
|
||||||
else
|
else
|
||||||
@ -258,8 +258,8 @@ void buttonCommands::startHandleLoop()
|
|||||||
legRest->setTargetPercent(legRest->getTargetPercent() + 5);
|
legRest->setTargetPercent(legRest->getTargetPercent() + 5);
|
||||||
// show temporary notification on display
|
// show temporary notification on display
|
||||||
char buf[8];
|
char buf[8];
|
||||||
snprintf(buf, 8, "%.1f%%", legRest->getTargetPercent());
|
snprintf(buf, 8, "%.0f%%", legRest->getTargetPercent());
|
||||||
display_showNotification(1000, "moving Rest:", "LEG", buf);
|
display_showNotification(2500, "moving Rest:", "LEG", buf);
|
||||||
}
|
}
|
||||||
buzzer->beep(1, 90, 0);
|
buzzer->beep(1, 90, 0);
|
||||||
break;
|
break;
|
||||||
|
@ -596,6 +596,10 @@ void handleStatusScreen(display_task_parameters_t *objects)
|
|||||||
// trigger custom notification that is shown in any mode for set amount of time
|
// trigger custom notification that is shown in any mode for set amount of time
|
||||||
void display_showNotification(uint32_t showDurationMs, const char *line1, const char *line2Large, const char *line3Large)
|
void display_showNotification(uint32_t showDurationMs, const char *line1, const char *line2Large, const char *line3Large)
|
||||||
{
|
{
|
||||||
|
// clear display when notification initially shown
|
||||||
|
if (notificationIsActive == false)
|
||||||
|
ssd1306_clear_screen(&dev, false);
|
||||||
|
// update state and timestamp for auto exit
|
||||||
timestampNotificationStop = esp_log_timestamp() + showDurationMs;
|
timestampNotificationStop = esp_log_timestamp() + showDurationMs;
|
||||||
notificationIsActive = true;
|
notificationIsActive = true;
|
||||||
// void displayTextLineCentered(SSD1306_t *display, int line, bool isLarge, bool inverted, const char *format, ...);
|
// void displayTextLineCentered(SSD1306_t *display, int line, bool isLarge, bool inverted, const char *format, ...);
|
||||||
|
@ -162,7 +162,7 @@ void createObjects()
|
|||||||
|
|
||||||
// create objects for controlling the chair position
|
// create objects for controlling the chair position
|
||||||
// gpio_up, gpio_down, travelDuration, name, defaultPosition
|
// gpio_up, gpio_down, travelDuration, name, defaultPosition
|
||||||
legRest = new cControlledRest(GPIO_NUM_2, GPIO_NUM_15, 12000, "legRest");
|
legRest = new cControlledRest(GPIO_NUM_2, GPIO_NUM_15, 11000, "legRest");
|
||||||
backRest = new cControlledRest(GPIO_NUM_16, GPIO_NUM_4, 12000, "backRest", 100); //default position "100% up"
|
backRest = new cControlledRest(GPIO_NUM_16, GPIO_NUM_4, 12000, "backRest", 100); //default position "100% up"
|
||||||
|
|
||||||
// create control object (control.hpp)
|
// create control object (control.hpp)
|
||||||
|
@ -95,10 +95,18 @@ void cControlledRest::updatePosition(){
|
|||||||
//============================
|
//============================
|
||||||
void cControlledRest::setState(restState_t targetState)
|
void cControlledRest::setState(restState_t targetState)
|
||||||
{
|
{
|
||||||
//check if actually changed
|
// TODO: drop this section?
|
||||||
if (targetState == state){
|
// check if actually changed
|
||||||
ESP_LOGV(TAG, "[%s] state already at '%s', nothing to do", name, restStateStr[state]);
|
if (targetState == state)
|
||||||
return;
|
{
|
||||||
|
// update anyways when target is 0 or 100, to trigger movement threshold in case of position tracking is out of sync
|
||||||
|
if (positionTarget == 0 || positionTarget == 100)
|
||||||
|
ESP_LOGD(TAG, "[%s] state already at '%s', but updating anyway to trigger move to limit addition", name, restStateStr[state]);
|
||||||
|
else
|
||||||
|
{
|
||||||
|
ESP_LOGV(TAG, "[%s] state already at '%s', nothing to do", name, restStateStr[state]);
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// when switching direction without stop: update position first
|
// when switching direction without stop: update position first
|
||||||
@ -147,8 +155,14 @@ void cControlledRest::setTargetPercent(float targetPercent){
|
|||||||
positionTarget = 100;
|
positionTarget = 100;
|
||||||
else if (positionTarget < 0)
|
else if (positionTarget < 0)
|
||||||
positionTarget = 0;
|
positionTarget = 0;
|
||||||
|
|
||||||
ESP_LOGI(TAG, "[%s] changed Target position from %.2f%% to %.2f%%", name, positionTargetPrev, positionTarget);
|
// ignore if unchanged
|
||||||
|
//if (positionTarget == positionTargetPrev){
|
||||||
|
// ESP_LOGI(TAG, "[%s] Target position unchanged at %.2f%%", name, positionTarget);
|
||||||
|
// return;
|
||||||
|
//}
|
||||||
|
|
||||||
|
ESP_LOGI(TAG, "[%s] changed Target position from %.2f%% to %.2f%%", name, positionTargetPrev, positionTarget);
|
||||||
|
|
||||||
// start rest in required direction
|
// start rest in required direction
|
||||||
// TODO always run this check in handle()?
|
// TODO always run this check in handle()?
|
||||||
@ -185,7 +199,7 @@ void cControlledRest::handle(){
|
|||||||
|
|
||||||
// target reached
|
// target reached
|
||||||
if (timeRan >= timeTarget){
|
if (timeRan >= timeTarget){
|
||||||
ESP_LOGW(TAG, "[%s] reached target run-time (%dms/%dms) for position %.2f%% -> stopping", name, timeRan, timeTarget, positionTarget);
|
ESP_LOGW(TAG, "[%s] handle: reached target run-time (%dms/%dms) for position %.2f%% -> stopping", name, timeRan, timeTarget, positionTarget);
|
||||||
setState(REST_OFF);
|
setState(REST_OFF);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user