I installed the FPV and found that it gets warm. Is this normal?
I also was wondering how to remote control the drone when FPV is used. I tried to use a second mobile, but was not successful. Anybody experience with FPV module?
I installed the FPV and found that it gets warm. Is this normal?
I also was wondering how to remote control the drone when FPV is used. I tried to use a second mobile, but was not successful. Anybody experience with FPV module?
(Sorry for re-posting. I posted in the wrong category first.)
Hi,
I try to code an easy trigger to disconnect the drone in Python. I thought using drone.isUpsideDown() as the trigger. However, the program below has the output:
Drone right way up
Drone upside down
Shouldn't in print "Drone right way up" repeatedly until I turn the drone upside down?
from CoDrone.codrone import *
drone = CoDrone()
drone.connect("3487","COM16")
while(drone.isConnected()):
print("Drone right way up")
if drone.isUpsideDown():
print("Drone upside down")
drone.disconnect()
sleep(1)
Hi,
I was wondering how to record flight data while drone is flying? I manage to fly forward, but it seem that the program waits at the command for forward flight until the command is completed. So the sensor data I am recording into a text file seem to be recorded only after the completing of the flight command. Any ideas how I can record sensor data while the drone is flying?
Hi,
I was wondering at what charge level batteries need to be swapped. At a workshop, a comment was to swap Parrot Mambo batteries at %20.
Would this be the same for the CoDrone Batteries or can they be flown until empty?
Richard