Why won't my CoDrone Pro/Lite stop flying after completing my program?
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()
