Close
0%
0%

Earth Rover

This rover is based on a Mars rover concept where a series of commands are sent and the rover executes them autonomously.

Similar projects worth following
This the Earth rover! It is a fairly easy build because of the modular commercial pieces that simply need to be wired together. The code was equally easy because of the library modules that do the heavy lifting.

The design is subdivided into sub-systems. Each sub-system has a cohesive related set of capabilities. In a large scale project each sub-system would be accomplished by a team. The subsystems include Chassis, Power, CPU and Sensors.

The code and a more detailed description can be found on GitHub at the URL provided.

The diagram below shows the subsystems and their major physical components. Connecting each physical component is an interface line that has to be physically connected and possibly addressed from a software perspective.

Chasis Sub-System:

After decades of thought about how to build a chassis, with many failed attempts using both wood and plexiglass, I have decided to purchase a chassis. There are two basic types; tracked and wheeled. There are many advantages with tracked vehicles however all Mars rovers are wheeled. All the Mars rovers utilize a design concept called rocker bogie suspension. There are no suitable off the shelf rocker bogie chassis available. There are however 4-wheel drive chassis. The selected chassis is the one that I selected back in 2005.

The number and size of components dictates the size of the rover central box and therefore the size of the rover. The rover of choice is the Nomad robot chassis available from servocity.com. The interior cavity or central box is 8” x 3.68” x 2.64” high. The overall size is 15.9” x 14” x 8” high. The chassis weighs 6.45 pounds and has a max speed of 5 MPH at 12 volts. The tires are 5.4” in diameter, perfect for uneven terrain. There are plenty of external mount points for sensors. The kit is made from components that remind me of the Erector Set of old.

1. Locomotion

Four motors are provided by the chassis kit. They are DC motors and they need motor controllers. The controllers of choice are Roboclaw motor controllers. Each board controls two motors. This requires two controller boards. These boards are very sophisticated.

The motors provided are 313 RPM heavy duty planetary gear motors that can propel the rover up to 5 MPH. They require a minimum of 6 volts with a maximum of 12 volts. The no load current is 0.52A and their stall current is 20A.

Given the stall amps, the proper size for the controller boards is the 2x15A boards which can handle a continuous draw of 15A and a surge of 30A. The size of these boards is 2.92” x 2.05” x 0.67” high. The Roboclaw setup software runs on Windows only. The manuals can be found at www.basicmicro.com.

The wires going to the motors need to be as short as possible. Given this and the fact that to turn the motors on one side need to run, the motor controllers should be mounted in the bottom cavities of the central box where the two side motor wires enter the interior cavity.

The Roboclaws can handle motors with encoders. With this added capability, the motors can measure distance traveled and control the speed of travel. This is a required capability. Two replacement motors were purchased to replace the rear motors. An encoder motor is paired with a non-encoded motor to control speed and distance traveled.

2. Roboclaw Interface

The Roboclaw has multiple interface types. The one that supports wheel encoding is Packet Serial Mode. This uses a serial port interface. The basic command consists of an address byte, a command byte, data bytes and a CRC16 byte. A micro-controller can address up to 8 Roboclaws.

The Roboclaws require a 5V and ground connection as well as a UART TX and RX interface. A basic example can be found at https://resources.basicmicro.com/standard-serial-bus-operation-with-arduino/ Examples from BasicMotion can be found at https://resources.basicmicro.com/category/arduino/.

The first step was to load the Motion Studio software onto a Windows laptop, connect a motor and 12v battery to the controller, then connect the controller to the PC with a USB cable. After launching the software and selecting the device, the firmware required updating. Once updated, they were both set to Packet Serial and one was set to address x128 which equates to address 0 or address 0x80 in Arduino speak and the other to address x129 or address 1 or address 0x81. The motors were connected and controlled from the software as a first test....

Read more »

  • 1 × Raspberry Pi Big brain
  • 1 × Arduino Nano Small brain
  • 1 × Nomad Robot from ServoCity
  • 1 × Additional chassis parts from ServoCity
  • 2 × Replacement motors with encoders from ServoCity

View all 17 components

  • 1
    Overview:

    The build sequence needs to be taken one step at a time. Start with the basic platform and add capability in a sequence that makes sense. The system should start with the chassis and add sensors and sub-systems until a complete rover is completed. The following list is the sequence of hardware and capabilities that should be added in the order specified.  Note that this also contains the status of the build.

  • 2
    Rover Chassis

    This includes the basic platform kit plus motors, motor controllers and Arduino. The tests involve implementing basic motor control commands and distance traveled.

    1. Assemble Rover along with new rear motors —> Complete
    2. Install Power battery. —> Complete
    3. Install Logic battery. —> Complete
    4. Install Power Regulator. —> Complete
    5. Install switch and charge posts. —> Complete
    6. Install power and ground panel. —> Complete
    7. Implement Arduino command: 18 —> Complete
    8. Install Roboclaws —> Complete
    9. Install Arduino —> Complete
    10. Implement Roboclaw Arduino commands: 5-8, 16, 25-26 —> Complete
  • 3
    Arduino LCD

    This includes an LCD backpack and Arduino jumpers. This allows the ability for the Arduino to provide internal status while operating.

    1. Install Arduino LCD. —> Complete
    2. Implement Arduino output to LCD —> Complete

View all 9 instructions

Enjoy this project?

Share

Discussions

Similar Projects

Does this project spark your interest?

Become a member to follow this project and never miss any updates