From 5249ac64e02a662b0542de185dd9160275ab12a9 Mon Sep 17 00:00:00 2001 From: jonny_l480 Date: Sat, 7 Sep 2024 16:45:39 +0200 Subject: [PATCH] Adjust config for new custom relay-pcb --- board_single/main/config.cpp | 2 +- board_single/main/main.cpp | 2 +- common/chairAdjust.cpp | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/board_single/main/config.cpp b/board_single/main/config.cpp index d5e40ac..c32fef2 100644 --- a/board_single/main/config.cpp +++ b/board_single/main/config.cpp @@ -39,7 +39,7 @@ void setLoglevels(void) esp_log_level_set("wifi", ESP_LOG_INFO); esp_log_level_set("http", ESP_LOG_INFO); // esp_log_level_set("automatedArmchair", ESP_LOG_DEBUG); - esp_log_level_set("display", ESP_LOG_INFO); + esp_log_level_set("display", ESP_LOG_WARN); // esp_log_level_set("current-sensors", ESP_LOG_INFO); esp_log_level_set("speedSensor", ESP_LOG_WARN); esp_log_level_set("chair-adjustment", ESP_LOG_INFO); diff --git a/board_single/main/main.cpp b/board_single/main/main.cpp index 4e6774e..06518a5 100644 --- a/board_single/main/main.cpp +++ b/board_single/main/main.cpp @@ -163,7 +163,7 @@ void createObjects() // create objects for controlling the chair position // gpio_up, gpio_down, travelDuration, name, defaultPosition 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_4, GPIO_NUM_16, 12000, "backRest", 100); //default position "100% up" // create control object (control.hpp) // with configuration from config.cpp diff --git a/common/chairAdjust.cpp b/common/chairAdjust.cpp index ef2ff83..d2488ff 100644 --- a/common/chairAdjust.cpp +++ b/common/chairAdjust.cpp @@ -11,9 +11,9 @@ extern "C" //--- config --- #define MUTEX_TIMEOUT (8000 / portTICK_PERIOD_MS) // thresholds to protect relays from welding stuck -#define MIN_TIME_ON 600 // minimum time in ms motor has to be ON before being able to turn off again -#define MIN_TIME_OFF 800 // minimum time in ms motor has to be OFF before being able to turn on again (other or same direction) -#define TRAVEL_TIME_LIMIT_ADDITION_MS 2000 // traveling longer into limit compensates inaccuracies in time based position tracking +#define MIN_TIME_ON 200 // minimum time in ms motor has to be ON before being able to turn off again +#define MIN_TIME_OFF 400 // minimum time in ms motor has to be OFF before being able to turn on again (other or same direction) +#define TRAVEL_TIME_LIMIT_ADDITION_MS 1300 // traveling longer into limit compensates inaccuracies in time based position tracking #define CHAIR_ADJUST_HANDLE_TASK_DELAY 100 // interval the stop-condition and state-switching is checked/handled