Change dutyMax and fade, Add reboot cmd (1x press)
decrease ramp from 3000ms to 900ms (as in old project) increase max duty from testing 60 to 94 Add reboot command (untested)
This commit is contained in:
parent
ef0888bf5c
commit
0165a88f1f
@ -42,8 +42,11 @@ void buttonCommands::action (uint8_t count){
|
||||
break;
|
||||
|
||||
case 1:
|
||||
ESP_LOGW(TAG, "running command for count 1");
|
||||
buzzer->beep(1,500,1);
|
||||
ESP_LOGW(TAG, "RESTART");
|
||||
buzzer->beep(1,1000,1);
|
||||
vTaskDelay(1000 / portTICK_PERIOD_MS);
|
||||
esp_restart();
|
||||
|
||||
break;
|
||||
|
||||
case 2:
|
||||
|
@ -29,7 +29,7 @@ single100a_config_t configDriverRight = {
|
||||
|
||||
//configure motor contol
|
||||
motorctl_config_t configMotorControl = {
|
||||
.msFade = 3000,
|
||||
.msFade = 900,
|
||||
.currentMax = 10
|
||||
};
|
||||
|
||||
|
@ -221,7 +221,7 @@ motorCommands_t joystick_generateCommandsDriving(joystickData_t data){
|
||||
|
||||
|
||||
motorCommands_t commands;
|
||||
float dutyMax = 60; //TODO add this to config, make changeable during runtime
|
||||
float dutyMax = 94; //TODO add this to config, make changeable during runtime
|
||||
|
||||
float dutyOffset = 5; //immedeately starts with this duty, TODO add this to config
|
||||
float dutyRange = dutyMax - dutyOffset;
|
||||
|
Loading…
x
Reference in New Issue
Block a user