handling ActionError
Jai-GAY opened this issue · 2 comments
Jai-GAY commented
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):
.......
julianoes commented
Something like this:
MAVSDK-Python/examples/camera.py
Lines 23 to 27 in 69576ac
Jai-GAY commented
Appreciated and got it.
Thank you for the development work and for making the lives of the users easier.