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

Join diydrones

Comments

  • 3D Robotics
    In the code we'll release this weekend, the diagonal mode of the sensor is supported.
  • Thanks Bryan I will give that a go.
  • Regarding the IR sensor, you can rotate it 180 deg to avoid the excess wire hanging out by a little code modification. Under the IR tab:
    Find the lines return constrain((int)(((infrared0-511)*90)/max_ir), -60,60);
    return -constrain((int)(((infrared1-511)*90)/max_ir), -60,60);
    Change the +/- values before "constrain" to
    return -constrain((int)(((infrared0-511)*90)/max_ir), -60,60);
    return constrain((int)(((infrared1-511)*90)/max_ir), -60,60);
  • I'll also be using a radian once my sensors arrive, so keep us posted. Doesn't the xy sensor need to be in a + position not X. or are you waiting for 2.1 ?
  • Thanks Chris just waiting for some nice weather cant wait to get it up there will keep you all informed on my progress.

    Thanks.
  • 3D Robotics
    Looking good! Let us know how the tweaking of the PID gains goes. We've never tried ArduPilot on that plane.
This reply was deleted.