Why won't my CoDrone Pro/Lite stop flying after completing my program?

Updated by Robolink Support

If your CoDrone Pro/Lite stops flying after completing your program, make sure that you have added a drone.land() at the end of your program to ensure that it lands after all other commands have been executed.

Example Code:

import CoDrone
drone = CoDrone.CoDrone()
drone.pair()
drone.takeoff()
drone.hover()
drone.land() #make sure that drone.land() is included
drone.close()


How did we do?

Powered by HelpDocs (opens in a new tab)

Powered by HelpDocs (opens in a new tab)