Skip to content

Commit f2168b8

Browse files
Merge pull request mavlink#578 from crisdeodates/example/fix_manual_control_order
fixing order of inputs in python example script
2 parents 2345933 + 4df6e07 commit f2168b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/manual_control.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ async def manual_controls():
8989
yaw = float(input_list[3])
9090

9191
await drone.manual_control.set_manual_control_input(
92-
roll, pitch, throttle, yaw)
92+
pitch, roll, throttle, yaw)
9393

9494
await asyncio.sleep(0.1)
9595

0 commit comments

Comments
 (0)