- fix deceleration being overwritten in nvs at massage mode change (as accel before) - handle deadlock when handle-loop does not give back mutex (rare but had that once -> restart) - clear display when changing to mode-select - clear display when switching status page - adjust fan time (less on) - slightly adjust accel/decel/max duty (needs testing)
273 lines
9.9 KiB
C++
273 lines
9.9 KiB
C++
// NOTE: this file is included in main.cpp only.
|
|
// outsourced all configuration related functions and structures to this file:
|
|
|
|
extern "C"
|
|
{
|
|
#include "esp_log.h"
|
|
}
|
|
#include "motordrivers.hpp"
|
|
#include "motorctl.hpp"
|
|
#include "joystick.hpp"
|
|
#include "http.hpp"
|
|
#include "speedsensor.hpp"
|
|
#include "buzzer.hpp"
|
|
#include "control.hpp"
|
|
#include "fan.hpp"
|
|
#include "auto.hpp"
|
|
#include "chairAdjust.hpp"
|
|
#include "display.hpp"
|
|
#include "encoder.h"
|
|
|
|
//==================================
|
|
//======== define loglevels ========
|
|
//==================================
|
|
void setLoglevels(void)
|
|
{
|
|
// set loglevel for all tags:
|
|
esp_log_level_set("*", ESP_LOG_WARN);
|
|
|
|
//--- set loglevel for individual tags ---
|
|
esp_log_level_set("main", ESP_LOG_INFO);
|
|
esp_log_level_set("buzzer", ESP_LOG_ERROR);
|
|
// esp_log_level_set("motordriver", ESP_LOG_DEBUG);
|
|
esp_log_level_set("motor-control", ESP_LOG_WARN);
|
|
// esp_log_level_set("evaluatedJoystick", ESP_LOG_DEBUG);
|
|
esp_log_level_set("joystickCommands", ESP_LOG_WARN);
|
|
esp_log_level_set("button", ESP_LOG_INFO);
|
|
esp_log_level_set("control", ESP_LOG_INFO);
|
|
// esp_log_level_set("fan-control", ESP_LOG_INFO);
|
|
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("current-sensors", ESP_LOG_INFO);
|
|
esp_log_level_set("speedSensor", ESP_LOG_WARN);
|
|
esp_log_level_set("chair-adjustment", ESP_LOG_INFO);
|
|
esp_log_level_set("menu", ESP_LOG_INFO);
|
|
esp_log_level_set("encoder", ESP_LOG_INFO);
|
|
|
|
|
|
|
|
esp_log_level_set("TESTING", ESP_LOG_ERROR);
|
|
|
|
|
|
|
|
}
|
|
|
|
//==================================
|
|
//======== configuration ===========
|
|
//==================================
|
|
|
|
//-----------------------------------
|
|
//------- motor configuration -------
|
|
//-----------------------------------
|
|
/* ==> currently using other driver
|
|
//--- configure left motor (hardware) ---
|
|
single100a_config_t configDriverLeft = {
|
|
.gpio_pwm = GPIO_NUM_26,
|
|
.gpio_a = GPIO_NUM_16,
|
|
.gpio_b = GPIO_NUM_4,
|
|
.ledc_timer = LEDC_TIMER_0,
|
|
.ledc_channel = LEDC_CHANNEL_0,
|
|
.aEnabledPinState = false, //-> pins inverted (mosfets)
|
|
.bEnabledPinState = false,
|
|
.resolution = LEDC_TIMER_11_BIT,
|
|
.pwmFreq = 10000
|
|
};
|
|
|
|
//--- configure right motor (hardware) ---
|
|
single100a_config_t configDriverRight = {
|
|
.gpio_pwm = GPIO_NUM_27,
|
|
.gpio_a = GPIO_NUM_2,
|
|
.gpio_b = GPIO_NUM_14,
|
|
.ledc_timer = LEDC_TIMER_1,
|
|
.ledc_channel = LEDC_CHANNEL_1,
|
|
.aEnabledPinState = false, //-> pin inverted (mosfet)
|
|
.bEnabledPinState = true, //-> not inverted (direct)
|
|
.resolution = LEDC_TIMER_11_BIT,
|
|
.pwmFreq = 10000
|
|
};
|
|
*/
|
|
|
|
//--- configure sabertooth driver --- (controls both motors in one instance)
|
|
sabertooth2x60_config_t sabertoothConfig = {
|
|
.gpio_TX = GPIO_NUM_27,
|
|
.uart_num = UART_NUM_2};
|
|
|
|
// TODO add motor name string -> then use as log tag?
|
|
//--- configure left motor (contol) ---
|
|
motorctl_config_t configMotorControlLeft = {
|
|
.name = "left",
|
|
.loggingEnabled = true,
|
|
.msFadeAccel = 1800, // acceleration of the motor (ms it takes from 0% to 100%)
|
|
.msFadeDecel = 1600, // deceleration of the motor (ms it takes from 100% to 0%)
|
|
.currentLimitEnabled = false,
|
|
.tractionControlSystemEnabled = false,
|
|
.currentSensor_adc = ADC1_CHANNEL_4, // GPIO32
|
|
.currentSensor_ratedCurrent = 50,
|
|
.currentMax = 30,
|
|
.currentInverted = true,
|
|
.currentSnapToZeroThreshold = 0.15,
|
|
.deadTimeMs = 0, // minimum time motor is off between direction change
|
|
.brakePauseBeforeResume = 1500,
|
|
.brakeDecel = 400,
|
|
};
|
|
|
|
//--- configure right motor (contol) ---
|
|
motorctl_config_t configMotorControlRight = {
|
|
.name = "right",
|
|
.loggingEnabled = false,
|
|
.msFadeAccel = 1800, // acceleration of the motor (ms it takes from 0% to 100%)
|
|
.msFadeDecel = 1600, // deceleration of the motor (ms it takes from 100% to 0%)
|
|
.currentLimitEnabled = false,
|
|
.tractionControlSystemEnabled = false,
|
|
.currentSensor_adc = ADC1_CHANNEL_5, // GPIO33
|
|
.currentSensor_ratedCurrent = 50,
|
|
.currentMax = 30,
|
|
.currentInverted = false,
|
|
.currentSnapToZeroThreshold = 0.25,
|
|
.deadTimeMs = 0, // minimum time motor is off between direction change
|
|
.brakePauseBeforeResume = 1500,
|
|
.brakeDecel = 400,
|
|
};
|
|
|
|
//------------------------------
|
|
//------- control config -------
|
|
//------------------------------
|
|
control_config_t configControl = {
|
|
.defaultMode = controlMode_t::JOYSTICK, // default mode after startup and toggling IDLE
|
|
//--- 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")
|
|
};
|
|
|
|
//-------------------------------
|
|
//----- httpJoystick config -----
|
|
//-------------------------------
|
|
httpJoystick_config_t configHttpJoystickMain{
|
|
.toleranceZeroX_Per = 1, // percentage around joystick axis the coordinate snaps to 0
|
|
.toleranceZeroY_Per = 6,
|
|
.toleranceEndPer = 2, // percentage before joystick end the coordinate snaps to 1/-1
|
|
.timeoutMs = 2500 // time no new data was received before the motors get turned off
|
|
};
|
|
|
|
//--------------------------------------
|
|
//------- joystick configuration -------
|
|
//--------------------------------------
|
|
joystick_config_t configJoystick = {
|
|
.adc_x = ADC1_CHANNEL_0, // GPIO36
|
|
.adc_y = ADC1_CHANNEL_3, // GPIO39
|
|
// percentage of joystick range the coordinate of the axis snaps to 0 (0-100)
|
|
.tolerance_zeroX_per = 7, // 6
|
|
.tolerance_zeroY_per = 10, // 7
|
|
// percentage of joystick range the coordinate snaps to -1 or 1 before configured "_max" or "_min" threshold (mechanical end) is reached (0-100)
|
|
.tolerance_end_per = 4,
|
|
// threshold the radius jumps to 1 before the stick is at max radius (range 0-1)
|
|
.tolerance_radius = 0.09,
|
|
|
|
// min and max adc values of each axis, !!!AFTER INVERSION!!! is applied:
|
|
.x_min = 1710, //=> x=-1
|
|
.x_max = 2980, //=> x=1
|
|
.y_min = 1700, //=> y=-1
|
|
.y_max = 2940, //=> y=1
|
|
// invert adc measurement
|
|
.x_inverted = false,
|
|
.y_inverted = true};
|
|
|
|
//----------------------------
|
|
//--- configure fan contol ---
|
|
//----------------------------
|
|
fan_config_t configFans = {
|
|
.gpio_fan = GPIO_NUM_13,
|
|
.dutyThreshold = 50,
|
|
.minOnMs = 3500, // time motor duty has to be above the threshold for fans to turn on
|
|
.minOffMs = 5000, // min time fans have to be off to be able to turn on again
|
|
.turnOffDelayMs = 3000, // time fans continue to be on after duty is below threshold
|
|
};
|
|
|
|
|
|
|
|
//--------------------------------------------
|
|
//-------- speed sensor configuration --------
|
|
//--------------------------------------------
|
|
speedSensor_config_t speedLeft_config{
|
|
.gpioPin = GPIO_NUM_5,
|
|
.degreePerGroup = 360 / 16,
|
|
.minPulseDurationUs = 3000, //smallest possible pulse duration (< time from start small-pulse to start long-pulse at full speed). Set to 0 to disable this noise detection
|
|
//measured wihth scope while tires in the air:
|
|
// 5-groups: 12ms
|
|
// 16-groups: 3.7ms
|
|
.tireCircumferenceMeter = 0.81,
|
|
.directionInverted = true,
|
|
.logName = "speedLeft"
|
|
};
|
|
|
|
speedSensor_config_t speedRight_config{
|
|
.gpioPin = GPIO_NUM_14,
|
|
.degreePerGroup = 360 / 12,
|
|
.minPulseDurationUs = 4000, //smallest possible pulse duration (< time from start small-pulse to start long-pulse at full speed). Set to 0 to disable this noise detection
|
|
.tireCircumferenceMeter = 0.81,
|
|
.directionInverted = false,
|
|
.logName = "speedRight"
|
|
};
|
|
|
|
|
|
|
|
//-------------------------
|
|
//-------- display --------
|
|
//-------------------------
|
|
display_config_t display_config{
|
|
// hardware initialization
|
|
.gpio_scl = GPIO_NUM_22,
|
|
.gpio_sda = GPIO_NUM_23,
|
|
.gpio_reset = -1, // negative number disables reset feature
|
|
.width = 128,
|
|
.height = 64,
|
|
.offsetX = 2,
|
|
.flip = false,
|
|
.contrastNormal = 170, // max: 255
|
|
// display task
|
|
.contrastReduced = 30, // max: 255
|
|
.timeoutReduceContrastMs = 5 * 60 * 1000, // actions at certain inactivity
|
|
.timeoutSwitchToScreensaverMs = 30 * 60 * 1000
|
|
};
|
|
|
|
|
|
|
|
//-------------------------
|
|
//-------- encoder --------
|
|
//-------------------------
|
|
//configure rotary encoder (next to joystick)
|
|
rotary_encoder_t encoder_config = {
|
|
.pin_a = GPIO_NUM_25,
|
|
.pin_b = GPIO_NUM_26,
|
|
.pin_btn = GPIO_NUM_21,
|
|
.code = 1,
|
|
.store = 0, //encoder count
|
|
.index = 0,
|
|
.btn_pressed_time_us = 20000,
|
|
.btn_state = RE_BTN_RELEASED //default state
|
|
};
|
|
|
|
|
|
//-----------------------------------
|
|
//--- joystick command generation ---
|
|
//-----------------------------------
|
|
//configure parameters for motor command generation from joystick data
|
|
joystickGenerateCommands_config_t joystickGenerateCommands_config{
|
|
//-- maxDuty --
|
|
// max duty when both motors are at equal ratio e.g. driving straight forward
|
|
// better to be set less than 100% to have some reserve for boosting the outer tire when turning
|
|
.maxDutyStraight = 65,
|
|
//-- maxBoost --
|
|
// boost is amount of duty added to maxDutyStraight to outer tire while turning
|
|
// => turning: inner tire gets slower, outer tire gets faster
|
|
// 0: boost = 0 (disabled)
|
|
// 100: boost = maxDutyStraight (e.g. when maxDuty is 50, outer motor can still reach 100 (50+50))
|
|
.maxRelativeBoostPercentOfMaxDuty = 60,
|
|
// 60: when maxDuty is set above 62% (equals 0.6*62 = 38% boost) the outer tire can still reach 100% - below 62 maxDuty the boosted speed is also reduced.
|
|
// => setting this value lower prevents desired low max duty configuration from being way to fast in curves.
|
|
.dutyOffset = 5, // duty at which motors start immediately
|
|
.ratioSnapToOneThreshold = 0.9, // threshold ratio snaps to 1 to have some area of max turning before entering X-Axis-full-rotate mode
|
|
.altStickMapping = false // invert reverse direction
|
|
}; |