Skip to content

Commit

Permalink
fixing order of inputs in python example script
Browse files Browse the repository at this point in the history
  • Loading branch information
crisdeodates committed Apr 14, 2023
1 parent 2345933 commit 4df6e07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/manual_control.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 4df6e07

Please sign in to comment.