From b9eb40538d18f592d7b42d801d13199381c7336a Mon Sep 17 00:00:00 2001 From: jonny_l480 Date: Mon, 18 Mar 2024 21:17:00 +0100 Subject: [PATCH] Fix unexpected movement in MASSAGE mode Revert change where massage commands were only generated at joystick change, since it has to be handled frequently in any case for motors to actually stop after certain time. Not tested yet --- board_single/main/control.cpp | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/board_single/main/control.cpp b/board_single/main/control.cpp index 72db7b0..baa6384 100644 --- a/board_single/main/control.cpp +++ b/board_single/main/control.cpp @@ -174,17 +174,15 @@ void controlledArmchair::handle() stickDataLast = stickData; if (!freezeInput) stickData = joystick_l->getData(); - //--- generate motor commands --- - // only generate when the stick data actually changed (e.g. stick stayed in center) + // reset timeout when joystick data changed if (stickData.x != stickDataLast.x || stickData.y != stickDataLast.y) - { resetTimeout(); // user input -> reset switch to IDLE timeout - // pass joystick data from getData method of evaluatedJoystick to generateCommandsShaking function - commands = joystick_generateCommandsShaking(stickData); - // apply motor commands - motorRight->setTarget(commands.right); - motorLeft->setTarget(commands.left); - } + //--- generate motor commands --- + // pass joystick data from getData method of evaluatedJoystick to generateCommandsShaking function + commands = joystick_generateCommandsShaking(stickData); + // apply motor commands + motorRight->setTarget(commands.right); + motorLeft->setTarget(commands.left); break; //------- handle HTTP mode -------