Questions tagged [drone]

Drones are more formally known as unmanned aerial vehicles (UAVs) or unmanned aircraft systems (UASes). Essentially, a drone is a flying robot that can be remotely controlled or fly autonomously through software-controlled flight plans in their embedded systems, working in conjunction with onboard sensors and GPS.

Drones are more formally known as unmanned aerial vehicles (UAVs) or unmanned aircraft systems (UASes). Essentially, a drone is a flying robot that can be remotely controlled or fly autonomously through software-controlled flight plans in their embedded systems, working in conjunction with onboard sensors and GPS.

30 questions
10
votes
1 answer

How to design and debug a custom I2C master-slave system?

How to proceed, when in need of a custom I2C master-slave system? What are the design criteria to apply? What are the debugging tools one can use to troubleshoot problems?
Igor Stoppa
  • 2,125
  • 1
  • 15
  • 20
6
votes
2 answers

What is the proper way to implement PID?

I'm having some trouble conceptualizing how to go about implementing PID into my drone. There are a few ways I'm thinking about implementing the pipeline: Having one PID Object for each of the six motors. Having one PID Object for each axis. How I…
tuskiomi
  • 205
  • 1
  • 11
3
votes
1 answer

How to implement a tilt compensated compass?

So i was trying to implement a tilt compensated compass, using HMC5883L and MPU6050. The problem i am facing is, there are 2 equations for tilt compensation Tilt Compensated X: X,Y,Z are compass output (raw output) new_X = X*cos(pitch) +…
Sajil
  • 31
  • 1
  • 3
3
votes
1 answer

Uploading arduino code to race drone flight controller

I am working on VTOL aircraft and currently I am looking for some good board as flight controller (FC). I could made it by myself, but it requests lot of time. I was thinking about one of fpv drone FC (I have avaiable this one:…
LucasN
  • 71
  • 4
3
votes
3 answers

How can an Arduino-Quadcopter be stabilized?

I have built an arduino quad-copter and I am using an MPU6050 to read the rotational position and velocity of the aircraft. The problem is that I cannot get the thing to stabilize. Watch this video here to get an idea of what I mean. So as you can…
Ember
  • 83
  • 2
  • 12
3
votes
4 answers

Brushless motor + ESC with Arduino question

Sorry in advance as I'm still a rookie with Arduino projects. My goal is to use an Arduino Uno 3 to create an inexpensive drone/plane project. Here are my materials and my set up: A2212 1000kv Brushless Motor HW30A Brushless Motor Speed Controller…
PandaMan
  • 139
  • 1
  • 4
2
votes
0 answers

Arduino pro mini resetting itself

I am working on a brushed motor quadcopter using Arduino pro mini. Every time I try to throttle, the Arduino gets reset by itself (motors start to spin but they will be turned off in 2 sec). I have added a 1000uf capacitor (tried up to 3300uf) to…
2
votes
1 answer

can we make Drone with Dc 180 motor and Arduino?

I want to make a drone as a project for my university, But I am kinda newbie in this, I did many searches about this and I found I should do it with the brushless motors (BLDC) but I can't buy this kind of motors, So I want to do it with DC motors I…
Moaaz
  • 23
  • 2
2
votes
0 answers

Creating PPM signal from 4 integrers

I am currently building a MultiWii based drone, I have built the emisor-receptor that interface 4 analog signals(4 potentiometers to control the drone) and it works perfect, the receiver(arduino Nano, receives correctly the signal and parses it on 4…
2
votes
1 answer

Quadcopter oscillation using PID

I am building an Arduino based flight controller for a quadcopter and have got it flying but it is not performing how I want it to. The drone is flying but when I release the sticks the drone does not stay perfectly still. There is some random and…
M.Schindler
  • 221
  • 1
  • 6
1
vote
0 answers

Flight controller board Reprogram

Recently in my scrap yard visits, more and more I find cheap quad-copters and remote controllers of all kind. I have built up quite a collection of boards and spare parts to create my own army of drones. Now, my question is, how can I access the…
GiuBu
  • 11
  • 1
1
vote
0 answers

When I start running the Brushless motors with MPU6050 in my quadrocopter, there is a sudden spike in the data of Gyro X-axis and Gyro Y-axis

I am using the MPU6050_light library for getting the data for my quad-copter. When I am obtaining the gyro values from the MPU6050 without running the motors, its giving correct values but on running the motors and getting the values, I am getting a…
coder-ari
  • 21
  • 1
1
vote
1 answer

MPU6050 Problem with NodeMCU

I am using MPU6050 as a part of IMU of my drone, and I wrote this program for Arduino Nano to fetch the orientation of the MPU6050 module in 3D space. And that works perfectly fine, but when I uploaded this exact code to a NodeMCU, the output…
1
vote
1 answer

Does a normal Ultra-Sonic sensor (HC SR04) sense through a Football Net like obstacle?

I am planning to to use ultrasonic sensors mounted on a drone for obstacle avoidance. I am not sure if the sensors would be capable of detecting a Net Like obstacle in its path.
1
vote
1 answer

How do you balance an Arduino quadcopter using calculated gyro values?

I was working on an Arduino quadcopter project. I setup all my hardware and was having balancing problems with my software end. I am using an MPU-6050 gyro and accelerometer. I have calculated the angle of the quad in relation to the ground and was…
BobbaTea
  • 27
  • 5
1
2