From 4df6e07c103c6568d49ccd1ebfa1b4e5e4e93f9c Mon Sep 17 00:00:00 2001 From: Cris Thomas <7608438+crisdeodates@users.noreply.github.com> Date: Fri, 14 Apr 2023 09:27:52 +0000 Subject: [PATCH] fixing order of inputs in python example script --- examples/manual_control.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/manual_control.py b/examples/manual_control.py index d7220f4a..af9ec9c8 100755 --- a/examples/manual_control.py +++ b/examples/manual_control.py @@ -89,7 +89,7 @@ async def manual_controls(): yaw = float(input_list[3]) await drone.manual_control.set_manual_control_input( - roll, pitch, throttle, yaw) + pitch, roll, throttle, yaw) await asyncio.sleep(0.1)