I try to run next script: ``` python from fedrone.drone import ArDrone drone = ArDrone() for i in range(5): print('takeoff') drone.takeoff() print('land') drone.land() ``` And drone do nothing. When I insert some `sleep` between events, my drone 5 times made `takeoff` and `land`. Is that right?
I try to run next script:
And drone do nothing.
When I insert some
sleepbetween events, my drone 5 times madetakeoffandland.Is that right?