Questions tagged [3dr]

3DR - Drone & UAV Technology

14 questions
4
votes
0 answers

Android DroneKit over Bluetooth

I currently purchased the 3DR bluetooth module for pixhawk to transfer telemetry data to an android phone. I am able to connect to the device, i.e. the bluetooth module turns solid red. However, the android program says that the phone and pixhawk…
dylan7
  • 803
  • 1
  • 10
  • 22
2
votes
0 answers

issues with H264 and opencv for python

Hello I am trying to stream from a gopro by 3DR solo using telnet ,h264 and opencv in python. First I run in one terminal: telnet 10.1.1.1 5502 that runs the sololink.sdp which contains: c=IN IP4 10.1.1.1 m=video 5600 RTP/AVP 96 a=rtpmap:96…
Luis Quiroga
  • 718
  • 2
  • 7
  • 22
1
vote
0 answers

Is there any method to convert any location in global frame to NED frame and from NED frame to global frame in drone-kit?

I am trying to make predict the crash location of a quadrotor if propulsion fails. My main objective is to help the search after a quad crashes. Now my "Trajectory" class takes the positon and orientaion an velocity of the quad in NED frame. I use…
Samm Flynn
  • 314
  • 2
  • 13
1
vote
2 answers

Unknown Output Characters in Arduino

I am actually connecting my laptop and arduino using FPVDrone 3DR Radio Telemetry. My connection is ARDUINO tx- FPV Air module rx ARDUINO rx- FPV Air module tx ARDUINO 5v- FPV Air module 5v ARDUINO GND- FPV Air module GND while my FPV ground…
1
vote
1 answer

Camera Events Dronekit

Is it possible to take an image or video using dronekit for 3DR solo? Is there an event to listen to when a pilot takes a snapshot or video from ground control station?
Krishna
  • 11
  • 4
1
vote
1 answer

Movement commands for Solo on GPS-denied manual modes

I am working on an indoor vision based navigation in a GPS denied environment, and I'm using a 3DR Solo. I want to be able to send movement commands to the Solo through the DroneKit API. Are these mavlink commands supported for modes other than…
1
vote
3 answers

DroneKit: Failed to connect to /dev/tty.usbmodem1411 : 'Serial' object has no attribute 'setBaudrate'

Following the DroneKit instructions, I was able to run the hello.py code from their QuickStart guide: http://python.dronekit.io/guide/quick_start.html. However, when I try to run their basic mission example, I get the setBaudrate error in the…
LBoeg
  • 23
  • 1
  • 7
1
vote
1 answer

How to write a code in Android to send waypoints to my 3DRobotics drone?

Good afternoon. At the moment I am trying to write the code in the "Main Activity" to send some waypoints to my IRIS drone but it is only working when the points are five. Could you check my code and give me suggestions about what is happening and…
Javieredo
  • 11
  • 3
0
votes
1 answer

how does mavlink or any other over-the-air protocol come in play with software?

I'm trying to understand how one software such as Mission Planner or APM2 or QGroundControl works from beginning to end. So, each application/software source code does not directly execute passing mavlink protocols, correct? Are the mavlink…
0
votes
2 answers

DroneKit mission not sent to drone

I'm trying to create simple mission using Drone-Kit android. Mission myMission = new Mission(); myMission.clear(); Takeoff to = new Takeoff(); ReturnToLaunch rtl = new ReturnToLaunch(); //set Altitude in…
Seiran
  • 126
  • 9
0
votes
1 answer

DroneKit simple takeoff not working

I'm trying to make a simple Takeoff command. Here is the code below: ControlApi.getApi(this.drone).takeoff(10, new AbstractCommandListener() { @Override public void onSuccess() { } @Override …
Seiran
  • 126
  • 9
0
votes
2 answers

drone developing - some general questions

I want to develop some application that could work with drone. I looking on the SDK of DJI and i don't understand how can i develop to their drone - because i want to write a code that can make the fly by self according to the information that…
Yanshof
  • 9,659
  • 21
  • 95
  • 195
0
votes
2 answers

Python on Windows, installing 3dr solo command line, PermissionError: [Errno 13]

I am trying to install 3DR solo command line on Windows 10. Below is the exception that i get. i have been doing a lot of reading and googling. I couldnt figure out the permission denied problem. I have this part shutil.copyfile(srcfile,…
MVPete
  • 1
  • 1
-1
votes
1 answer

How to live stream camera footage from solo drone during flight?

I am trying to access my Pixpro sp360 4k camera while it is attached to a 3dr drone during flight and send the live feed from the Camera to YouTube. I tried using drone-kit provided by 3dr to access the camera. It works, but when I try to send that…