Dedicated to the exchange of useful information between members using the Arduino or other families of processors for autonomous rovers.

313 Members
Join Us!

Before Posting an Issue

Hi All,

Before posting an issue or a problem in the ArduRover Discussion Forum, please check the wiki table of contents, review the firmware release notes in the subforum, and search that subforum for existing answers to your question. Help avoid duplicate threads by finding other members with the same issue and their solution.

When formulating your post, use a descriptive title such as "rover will not navigate to waypoints in the Auto mode" (not "HELP!" or "Problem").

Please include the following information to help diagnose your query:

  • Describe the problem you are having. What is the expected verses the observed behavior?
  • Provide hardware information such as the brand and version of your autopilot, GPS, radio, and compass, as well as any other pertinent details about your rover setup.
  • What version of the APM: ArdurRover2 firmware version are you running?
  • For navigation issues, provide your tlog and/or dataflash log. Click here for instructions on retrieving a dataflash log.

TCIII

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

Join diydrones

Comments are closed.

Comments

  • I started a new codebase for my powerwheels rover codebase. But honestly, the fact that I did meant I didnt spend much time adding back any functionality, and I have something that wouldnt be easily mission planner compatible. Im already ready to go back to ardurover code as soon as it has been sanitized, and a better structure for different drive mechanisms are in place.

    While a new codebase may make it easier from a code and education standpoint, I fear the deviation would inherently make what is nice about the community as a whole (one fairly consistent codebase across all platforms) go away.  I think having mission planner parameter management, similar setup and loop structures, shared navigation code, makes it easier to switch from rover to multirotor/plane code.  I see some hurdles in optimizing the navigation code for rover, but I think that any enhancements made, could also directly benefit plane and add some interesting features to copter.

    I see ardurover being the project that draws the bulk of the users in, due to much lower cost of entry and much lesser impact of crashes. And ultimately being the gateway to the bigger ardupilot community.

    Just my 2cents.
    -Dan

  • 100KM

    So what was the result of that discussion?  What's gonna happen with the ardurover firmware?

  • Moderator

    Here is a video from one of those runs. After 23 seconds, it gets very boring. Forgive the background noise, I'm talking on the phone, wishing my friend a happy birthday and squeezing in a quick rover test and the same time...

     

  • Moderator

    Here is a google earth export (had to mess with the data, clamp to ground, etc to get the paths to appear.) These are only paths while in auto, not manual or learning. I'm pleased to have paths to work with. I'm excited to sort these issues out. It is really fun to flick the switch and watch it go. A few of these terminate due to high grasses, but most end in a loop, so I switch out of auto. 

    3692566235?profile=original

  • Moderator

    Tom, 

    Thanks. I thought I might just be handling it wrong, but I keep running out of battery before I feel confident I'm doing everything right. I have gotten it to run a half-circuit at times with two of the last three git pulls I did, but I generally end up having it circle endlessly when I think it should be headed for a WP. Once it starts doing that, I start over with learning, but generally don't get far. I have logs, but wanted to get in some nice clean runs before I shared in detail, since I cannot make easy sense of it yet and don't want anyone else going through any pains to do so either. 

  • T3

    I don't know if this helps but it's a program someone wrote that I've held onto for the Arduino. It'll read up to 8 servo channels for you and display them in the serial monitor. I'm sure you could easily modify it for an 16x2 LCD so you wouldn't need a computer.

    /*
    RC_Serial_Print

    by: Russ Sutton
    Use this program to display RC Rx Output
    signals for easier RC Tx Tunning.

    Set serial port to 56700



    */

    int ch1 = 0; // Gives digital pin 0 a name
    int ch2 = 1; // Gives digital pin 1 a name
    int ch3 = 2; // Gives digital pin 2 a name
    int ch4 = 9; // Gives digital pin 9 a name
    int ch5 = 10; // Gives digital pin 10 a name
    int ch6 = 11; // Gives digital pin 11 a name
    int ch7 = 12; // Gives digital pin 12 a name
    int ch8 = 13; // Gives digital pin 13 a name

    unsigned long duration1; // place to record inpulse
    unsigned long duration2;
    unsigned long duration3;
    unsigned long duration4;
    unsigned long duration5;
    unsigned long duration6;
    unsigned long duration7;
    unsigned long duration8;

    void setup()
    {
    pinMode(ch1, INPUT); // Tells Aduino pins are inputs
    pinMode(ch2, INPUT);
    pinMode(ch3, INPUT);
    pinMode(ch4, INPUT);
    pinMode(ch5, INPUT);
    pinMode(ch6, INPUT);
    pinMode(ch7, INPUT);
    pinMode(ch8, INPUT);
    Serial.begin(57600);
    }

    void loop()
    {
    duration1 = pulseIn(ch1, HIGH); //records inpulse from RC Rx
    duration2 = pulseIn(ch2, HIGH);
    duration3 = pulseIn(ch3, HIGH);
    duration4 = pulseIn(ch4, HIGH);
    duration5 = pulseIn(ch5, HIGH);
    duration6 = pulseIn(ch6, HIGH);
    duration7 = pulseIn(ch7, HIGH);
    duration8 = pulseIn(ch8, HIGH);

    Serial.print("CH 1 "); // Prints data to serial port
    Serial.print(duration1);
    Serial.print(",");
    Serial.print(" CH 2 ");
    Serial.print( duration2);
    Serial.print(",");
    Serial.print(" CH 3 ");
    Serial.print( duration3);
    Serial.print(",");
    Serial.print(" CH 4 ");
    Serial.println( duration4);
    Serial.print(",");
    Serial.print(" CH 5 ");
    Serial.print( duration5);
    Serial.print(",");
    Serial.print(" CH 6 ");
    Serial.print( duration6);
    Serial.print(",");
    Serial.print(" CH 7 ");
    Serial.print( duration7);
    Serial.print(",");
    Serial.print(" CH 8 ");
    Serial.println( duration8);
    Serial.print(" ");
    Serial.println(" " );
    delay(2000); //changes smaple rate 2000 = 2 seconds


    }

  • Moderator
    I think in time we will need to think about this in a more flexible manner. It seems to me that there will be, in time, if not already, different ESC types, stepper motors, tracked/differential drive/steering systems, and I would expect we will also have transmission systems to contend with. I am already planning on fitting an atv, and construction equipment (multiple forward and reverse settings, plus throttle controls)
  • Moderator
    I'm happy to put the wiki information anywhere. We can start a new docroot in an appendix, keep it very live, for the alpha version, get it ready as we move towards a release, or any other way. It can be targeted at alpha users, or could be put up elsewhere, whatever this team wants to do. I just want to start collecting more information in one place to so we can pull info out of the discussions and put it in one place for new users/developers, maybe. But I'm not set in any specific path. Whatever this team thinks is best, I'm happy to help.
  • @Flavio

    I think starting when it's an Alpha is the best time to start a wiki; this way we are starting with good information, with the understanding that it may change (and hopefully for the better) with newer releases of the firmware. Just this new Drone Builder's opinion, of course.

  • Moderator
    I know Melissa well, I'm living in Plano, and pass through Melissa on the way to/from our ranch/flying fields in Avery.
This reply was deleted.

New rover advice

Hi, i am looking to build a new rover, but i need some advice on the chassis. I like the 4wd chassis/tank look and prefer it over the crawler/rc look.are those any good though? most people recommend crawlers.I am looking to get something from banggood, any advice will be highly appreciated. thanks

Read more…
0 Replies

skid steer vehicle steering uncontrollable

Hi all, I have a skid steer robot using a pixhawk cube, one 1x15 roboclaw motor controller and a dagu wild thumper 4 wheel chassis. I have skid steering working so far, testing motor c and motor d tests works as described and the vehicle can be controlled in manual mode. However, upon using any mode other than manual mode the rover wants to shake and pivot on the spot, and it seems the steering PID controller oscillates and these oscillations get larger. i have tried everything but it is still…

Read more…
1 Reply

Traxxas X-Maxx ROVER ESC advice

Hi,I have converted a Traxxas X-Maxx into a rover using the Pixhawk Cube 2 controller kit with a Here GNSS.I swapped out the original X-Maxx remote controller for an X6R receiver and Taranis QX7 radio.latest version of ArduRover firmware installed as of 8/11/18.  The rover has an EZRun Max6 ESC. The problem now is the ESC control over the transition into reverse. The ESC is currently set to it's Running Mode Option 2: "Forward/Reverse with Break", AKA the "Double Click Method".What this mode…

Read more…
0 Replies

Help! No throttle or steering response!

Hi all.I know this is an Adurover group, but Thought I would reach out and try my odds for some help as I'm perplexed by this problem. I have a Traxxas X-Maxx set up with a Pixhawk Cube 2.1 and the Here GPS. I'm using a Tarranis X7 remote controller and a X8R Sbus Receiver. I'm using QGroundControl with the latest, Pixhawk 1.8.0 Firmware with the Generic Rover airframe profile installed. As instructed, I have Steering servo wired into Main 2 and Throttle ESC wired into Main 4. Sensors are…

Read more…
2 Replies