diff --git a/src/Joystick/Joystick.cc b/src/Joystick/Joystick.cc index e937624..ee9f06d 100644 --- a/src/Joystick/Joystick.cc +++ b/src/Joystick/Joystick.cc @@ -676,6 +676,8 @@ void Joystick::_handleAxis() buttonPressedBits |= buttonBit; } } + emit axisValues(roll, pitch, yaw, throttle); + uint16_t shortButtons = static_cast(buttonPressedBits & 0xFFFF); _activeVehicle->sendJoystickDataThreadSafe(roll, pitch, yaw, throttle, shortButtons); }