Revert "Add hysteresis to joystick position X-Axis"
While testing this feature briefly that approach did not appear to be a good idea. - noticed that the driving with joystick was a little unintuitive/unexpected (maybe just not used to it?) - BUG that the state does not reset to center when previous state was X-AXIS? Resulting in the armchair to slightly shake randomly at joystick center -> this has to be fixed if this approach is tested again. This reverts commit b2b12fe5de1e16ea2f25dfa4b0c3ac6845024c71.
This commit is contained in:
parent
b2b12fe5de
commit
d573cc5b24
@ -159,7 +159,7 @@ esp_err_t httpJoystick::receiveHttpData(httpd_req_t *req){
|
|||||||
//--- calculate angle ---
|
//--- calculate angle ---
|
||||||
data.angle = (atan(data.y/data.x) * 180) / 3.141;
|
data.angle = (atan(data.y/data.x) * 180) / 3.141;
|
||||||
//--- evaluate position ---
|
//--- evaluate position ---
|
||||||
data.position = joystick_evaluatePosition(data.x, data.y, &stickPosPrevious);
|
data.position = joystick_evaluatePosition(data.x, data.y);
|
||||||
|
|
||||||
//log processed values
|
//log processed values
|
||||||
ESP_LOGI(TAG, "processed values: x=%.3f y=%.3f radius=%.3f angle=%.3f pos=%s",
|
ESP_LOGI(TAG, "processed values: x=%.3f y=%.3f radius=%.3f angle=%.3f pos=%s",
|
||||||
|
@ -68,6 +68,4 @@ class httpJoystick{
|
|||||||
.radius = 0,
|
.radius = 0,
|
||||||
.angle = 0
|
.angle = 0
|
||||||
};
|
};
|
||||||
//store last joystick position for position hysteresis
|
|
||||||
joystickPos_t stickPosPrevious = joystickPos_t::CENTER;
|
|
||||||
};
|
};
|
||||||
|
@ -93,7 +93,7 @@ joystickData_t evaluatedJoystick::getData() {
|
|||||||
data.angle = (atan(data.y/data.x) * 180) / 3.141;
|
data.angle = (atan(data.y/data.x) * 180) / 3.141;
|
||||||
|
|
||||||
//define position
|
//define position
|
||||||
data.position = joystick_evaluatePosition(x, y, &stickPosPrevious);
|
data.position = joystick_evaluatePosition(x, y);
|
||||||
|
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
@ -234,67 +234,41 @@ void joystick_scaleCoordinatesLinear(joystickData_t * data, float pointX, float
|
|||||||
//========= joystick_evaluatePosition =========
|
//========= joystick_evaluatePosition =========
|
||||||
//=============================================
|
//=============================================
|
||||||
//function that defines and returns enum joystickPos from x and y coordinates
|
//function that defines and returns enum joystickPos from x and y coordinates
|
||||||
joystickPos_t joystick_evaluatePosition(float x, float y, joystickPos_t* prevPos){
|
joystickPos_t joystick_evaluatePosition(float x, float y){
|
||||||
joystickPos_t newPos;
|
|
||||||
//define position
|
//define position
|
||||||
//--- center ---
|
//--- center ---
|
||||||
if((fabs(x) == 0) && (fabs(y) == 0)){
|
if((fabs(x) == 0) && (fabs(y) == 0)){
|
||||||
newPos = joystickPos_t::CENTER;
|
return joystickPos_t::CENTER;
|
||||||
}
|
}
|
||||||
//--- x axis ---
|
//--- x axis ---
|
||||||
else if(fabs(y) == 0){
|
else if(fabs(y) == 0){
|
||||||
newPos = joystickPos_t::X_AXIS;
|
return joystickPos_t::X_AXIS;
|
||||||
}
|
}
|
||||||
//--- y axis ---
|
//--- y axis ---
|
||||||
else if(fabs(x) == 0){
|
else if(fabs(x) == 0){
|
||||||
newPos = joystickPos_t::Y_AXIS;
|
return joystickPos_t::Y_AXIS;
|
||||||
}
|
}
|
||||||
//--- top right ---
|
//--- top right ---
|
||||||
else if(x > 0 && y > 0){
|
else if(x > 0 && y > 0){
|
||||||
newPos = joystickPos_t::TOP_RIGHT;
|
return joystickPos_t::TOP_RIGHT;
|
||||||
}
|
}
|
||||||
//--- top left ---
|
//--- top left ---
|
||||||
else if(x < 0 && y > 0){
|
else if(x < 0 && y > 0){
|
||||||
newPos = joystickPos_t::TOP_LEFT;
|
return joystickPos_t::TOP_LEFT;
|
||||||
}
|
}
|
||||||
//--- bottom left ---
|
//--- bottom left ---
|
||||||
else if(x < 0 && y < 0){
|
else if(x < 0 && y < 0){
|
||||||
newPos = joystickPos_t::BOTTOM_LEFT;
|
return joystickPos_t::BOTTOM_LEFT;
|
||||||
}
|
}
|
||||||
//--- bottom right ---
|
//--- bottom right ---
|
||||||
else if(x > 0 && y < 0){
|
else if(x > 0 && y < 0){
|
||||||
newPos = joystickPos_t::BOTTOM_RIGHT;
|
return joystickPos_t::BOTTOM_RIGHT;
|
||||||
}
|
}
|
||||||
//--- other ---
|
//--- other ---
|
||||||
else {
|
else {
|
||||||
newPos = joystickPos_t::CENTER;
|
return joystickPos_t::CENTER;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//--- apply hysteresis on change from X-AXIS ---
|
|
||||||
//=> prevent frequent switching between X-AXIS and other positions
|
|
||||||
//otherwise this results in a very jerky motor action when in driving mode
|
|
||||||
float xAxisHyst = 0.2;
|
|
||||||
|
|
||||||
//change in position
|
|
||||||
if (newPos != *prevPos) {
|
|
||||||
|
|
||||||
//switched FROM x-axis to other position
|
|
||||||
if(*prevPos == joystickPos_t::X_AXIS) { //switch FROM X_AXIS
|
|
||||||
|
|
||||||
//verify coordinate changed more than hysteresis
|
|
||||||
if (fabs(y) < xAxisHyst) { //less offset than hysteresis
|
|
||||||
newPos = joystickPos_t::X_AXIS; //stay at X_AXIS position
|
|
||||||
} else { //switch is valid (enough change)
|
|
||||||
*prevPos = newPos;
|
|
||||||
}
|
|
||||||
|
|
||||||
} else { //switched to any other position
|
|
||||||
*prevPos = newPos;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return newPos;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -96,8 +96,6 @@ class evaluatedJoystick {
|
|||||||
joystickData_t data;
|
joystickData_t data;
|
||||||
float x;
|
float x;
|
||||||
float y;
|
float y;
|
||||||
//store last joystick position for position hysteresis
|
|
||||||
joystickPos_t stickPosPrevious = joystickPos_t::CENTER;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@ -156,5 +154,4 @@ void joystick_scaleCoordinatesLinear(joystickData_t * data, float pointX, float
|
|||||||
//========= joystick_evaluatePosition =========
|
//========= joystick_evaluatePosition =========
|
||||||
//=============================================
|
//=============================================
|
||||||
//function that defines and returns enum joystickPos from x and y coordinates
|
//function that defines and returns enum joystickPos from x and y coordinates
|
||||||
//joystickPos_t joystick_evaluatePosition(float x, float y);
|
joystickPos_t joystick_evaluatePosition(float x, float y);
|
||||||
joystickPos_t joystick_evaluatePosition(float x, float y, joystickPos_t* prevPos);
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user