Skip to content

Commit

Permalink
Merge pull request #578 from crisdeodates/example/fix_manual_control_…
Browse files Browse the repository at this point in the history
…order

fixing order of inputs in python example script
  • Loading branch information
JonasVautherin authored Apr 14, 2023
2 parents 2345933 + 4df6e07 commit f2168b8
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 f2168b8

Please sign in to comment.