Developer

ArduIMU Quadcopter

Is this the quadrotor week? :-)Hi all, on Christmas holidays I have started my DIY project to construct a cheap (but good performance) quadcopter based on ArduIMU hardware only.

I have used standard props (NO counter rotating) that are easy to get and if we want construct the quad on other size you have no problems finding the right prop. To compensate for torque I mount front and rear motor with a small angle (about 6º, see Photos). I first use this concept on this project (http://www.rcgroups.com/forums/showthread.php?t=297067) six years ago!!...Size: 64cm (motor to motor). We can dissasembly front and rear arms with one screw (easy transport)Weigth: 850gComponents:4x TowerPro2410-9T+ESC18A+Prop1047 combo 4x$15 = $603S2200 Lipo Batt = $13Aluminium and building materials = $12ArduIMU = $99--------------Full: $185

Note how small seems the ArduIMU PCB on this quad! and how clean is this setup. We can construct really tiny quads this way and if we use standard props we have a wide range of motors and props to choose...Development:The first test I did on this project was the vibration test of the ArduIMU with motors running and with the new firmware (I use r20) there are no problems with this. Because we have 4 motors running there are more noise on accelerometers (it´s normal) so I added a new low pass filter on the accels and also adjust the gains for drift corrections...The main loop with IMU code and PID controls for roll, pitch and yaw runs at 70Hz and the PWM outputs for ESC´s have a 125Hz rate. As always, adjust the PID gains is a very important task . D term is really important for a quad and I am using directly the raw gyro readings (bias corrected) to feed the D term in order to make it more responsive.The most difficult part was the developing of the function to generate the PWM pulses for the ESC´s because we need 4 PWM servo outputs with very good precision (1-2us) and at a high rate (now is 125Hz).This code generate more than 10,000 interrupts per second (only ADC generates more than 8,800) so in this enviroment is difficult to generate precise pulses.The solution was to use the Timer2 overflow interrupt and a "trick" based on Timer 1 counter readings to achieve this high precision. I have also one (or two) more standard servo output for future applications (camera stabilization?)The radio input is done via the ICP pin and interrupts so high precision is achieved (1us). We need to feed a PPM signal (directly from Rx or via the new Jordi´s PPM encoder...)On the future we can use the magnetometer of ArduIMU, but now the yaw is like having a Heading hold gyro (note that quads have slower yaw response than helis)This is the first stage on the development process of this project but I have made some tests with good results.

Future:-More tests, outdoor tests...-Add ArduIMU magnetometer to correct yaw drift-Add GPS for position control...-Add Ultrasonic rangefinger for automatic take-off / landing...-Add camera with stabilization...-Find time to all this projects... :-)Here is the code and some notes: Quad1_15.zipSome link to photos: Photo1,Photo2,Photo3,Photo4Jose Julio.
E-mail me when people leave their comments –

You need to be a member of diydrones to add comments!

Join diydrones

Comments

  • hi fnds,can i get the components names for building this...thanks in advance

  • Is your code usable in ArduIMU v3 without GPS..?

  • Hallo. i have a question about the Quad1_15.zip sketch. can i test it on pc via terra term or arduimu test? or is their a version were it is possible? thanks

  • why my rx value from 8ch ppm encoder not Correct. I use receiver futaba r617fs .I connect receiver to 8 ch ppm encoder v.2 and board arduimu v2 follow instructions. I Measure the signal output of the 8 ch ppm encoder is shown picture

    3692247503?profile=original

    the signal output of the 8 ch ppm encoder

    3692247516?profile=original

     

    please help me

  • Hey. I have Some old stuff Dynam Racon 6, with Dynam R-6P receiver. So i need some additional PPM encoder for connection to aruiMO? or i just can change receiver? please suggest :)
  • I have a Tx JR 388 (2,4 Ghz FRSKY) and Rx FRSKY D8R v2 with PPM at ch8. In JR channel order is 1Throttle 2Aleiron 3Elevator and 4Rudder, and I changed the reading order of the receiver in the code:

          //ch1 = RxGetChannelPulseWidth(1);   // Read radio channel values
          //ch2 = RxGetChannelPulseWidth(2);
          //ch3 = RxGetChannelPulseWidth(3);
          //ch4 = RxGetChannelPulseWidth(4);
          //This order for JR
          ch3 = RxGetChannelPulseWidth(1);   // Throttle
          ch1 = RxGetChannelPulseWidth(2);   // Aleiron
          ch2 = RxGetChannelPulseWidth(3);   // Elevator
          ch4 = RxGetChannelPulseWidth(4);   // Rudder

    but can not get work. My Rx latency is 18ms I think. PPM and chain with 7 channels as well:

    d8rsp-line.jpg

    Should I change something else to get the signal from the Rx to my ArdIMU?

    Sorry for my ignorance, but I want to learn about this board and its code.Thank you in advance who can help me.

  • hai. how to program arduIMU? can you teach me? thanks.. :)

  • So in thepory speed controler need only main power from battery, 3 wires to motor, and one pwm from controler. red wires and black is not needed it this case? i was just intrested if esc can be powered from main power suply, and it dnt need "to power again" :)

    one more short question. 3 wires to motor from esc. does it mater to motor which wires goes where on motor?
  • The BEC on an ESC provides power when the ESC is connected to main flight battery which is how the rest of the electronics (IMU etc) are powered. If you allow the BEC on each of the ESC's to supply power they can 'fight each other' causing problems so three are disconnected (the red lead). The PWM signal is the white lead and that comes from the IMU.

    The DCM is complex but this may help http://diydrones.ning.com/profiles/blogs/dcm-imu-theory-first-draft...

    Peter
  • Hey all. Maybe somebody can explain to me, how Jose connect only one BEC power wire (red one) to power, and other 3 use only ground (black) and white (pwm control)? so it means he power only one bec? or bec take power from battery directly to power logical circuit? 

     

This reply was deleted.