From b811f77c8ea4f45b295c804452060d3feb6ca780 Mon Sep 17 00:00:00 2001 From: jonny_ji7 Date: Fri, 24 Jun 2022 21:38:40 +0200 Subject: [PATCH] Update App: Dark theme, remove radius and angle Update react web app: - add dark background color - change joystick colors - increase joystick size by 50px - change heading - remove angle and radius - not displaying anymore - not sending to api anymore Update http.cpp: - remove radius and angle from json parsing - limit radius to 1 --- main/http.cpp | 18 +++++++++++------- react-app/public/index.html | 2 +- react-app/src/App.js | 29 +++++++---------------------- 3 files changed, 19 insertions(+), 30 deletions(-) diff --git a/main/http.cpp b/main/http.cpp index a544c54..0c76184 100644 --- a/main/http.cpp +++ b/main/http.cpp @@ -133,8 +133,6 @@ esp_err_t httpJoystick::receiveHttpData(httpd_req_t *req){ //--- extract relevant items from json object --- cJSON *x_json = cJSON_GetObjectItem(payload, "x"); cJSON *y_json = cJSON_GetObjectItem(payload, "y"); - cJSON *radius_json = cJSON_GetObjectItem(payload, "radius"); - cJSON *angle_json = cJSON_GetObjectItem(payload, "angle"); //--- save items to struct --- joystickData_t data = { }; @@ -143,20 +141,26 @@ esp_err_t httpJoystick::receiveHttpData(httpd_req_t *req){ //convert json to double to float data.x = static_cast(x_json->valuedouble); data.y = static_cast(y_json->valuedouble); - data.radius = static_cast(radius_json->valuedouble); - data.angle = static_cast(angle_json->valuedouble); //log received and parsed values - ESP_LOGI(TAG, "received values: x=%.3f y=%.3f radius=%.3f angle=%.3f", - data.x, data.y, data.radius, data.angle); + ESP_LOGI(TAG, "received values: x=%.3f y=%.3f", + data.x, data.y); // scaleCoordinate(input, min, max, center, tolerance_zero_per, tolerance_end_per) data.x = scaleCoordinate(data.x+1, 0, 2, 1, config.toleranceZeroX_Per, config.toleranceEndPer); data.y = scaleCoordinate(data.y+1, 0, 2, 1, config.toleranceZeroY_Per, config.toleranceEndPer); - //--- re-calculate radius, angle and position with new/scaled coordinates --- + //--- calculate radius with new/scaled coordinates --- data.radius = sqrt(pow(data.x,2) + pow(data.y,2)); + //TODO: radius tolerance? (as in original joystick func) + //limit radius to 1 + if (data.radius > 1) { + data.radius = 1; + } + //--- calculate angle --- data.angle = (atan(data.y/data.x) * 180) / 3.141; + //--- evaluate position --- data.position = joystick_evaluatePosition(data.x, data.y); + //log processed values ESP_LOGI(TAG, "processed values: x=%.3f y=%.3f radius=%.3f angle=%.3f pos=%s", data.x, data.y, data.radius, data.angle, joystickPosStr[(int)data.position]); diff --git a/react-app/public/index.html b/react-app/public/index.html index fc4c89c..41b6646 100644 --- a/react-app/public/index.html +++ b/react-app/public/index.html @@ -10,7 +10,7 @@ /> armchair ctl - +