mavlink/MAVSDK-Python

handling ActionError

Jai-GAY opened this issue · 2 comments

like to know what is the proper way to handle/receive/catch the Raises exception for example
async arm()
async takeoff()

Is there an example code?

try:
actionerr = await drone.action.takeoff()
.........
except ActionError(result=res, origin=org):
.......

Something like this:

print("Setting mode to 'PHOTO'")
try:
await drone.camera.set_mode(Mode.PHOTO)
except CameraError as error:
print(f"Setting mode failed with error code: {error._result.result}")

Appreciated and got it.
Thank you for the development work and for making the lives of the users easier.