Repo symbol

diffbot repository

Repo symbol

diffbot repository

Repo symbol

diffbot repository

Repo symbol

diffbot repository

Repo symbol

diffbot repository

Repo symbol

diffbot repository

Repo symbol

diffbot repository

Repo symbol

diffbot repository

Repo symbol

diffbot repository

Repo symbol

diffbot repository

Repo symbol

diffbot repository

Repo symbol

diffbot repository

Repo symbol

diffbot repository

Repo symbol

diffbot repository

Repo symbol

diffbot repository

Repo symbol

diffbot repository

Repo symbol

diffbot repository

Repo symbol

diffbot repository

Repository Summary

Checkout URI https://github.com/ros-mobile-robots/diffbot.git
VCS Type git
VCS Version noetic-devel
Last Updated 2024-04-02
Dev Status DEVELOPED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

README

DiffBot

CI Documentation CI

DiffBot is an autonomous differential drive robot with two wheels. Its main processing unit is a Raspberry Pi 4 B running Ubuntu Mate 20.04 and the ROS 1 (ROS Noetic) middleware. This respository contains ROS driver packages, ROS Control Hardware Interface for the real robot and configurations for simulating DiffBot. The formatted documentation can be found at: https://ros-mobile-robots.com.

DiffBot Lidar SLAMTEC RPLidar A2

If you are looking for a 3D printable modular base, see the remo_description repository. You can use it directly with the software of this diffbot repository.

Remo Gazebo Simulation RViz

It provides mounts for different camera modules, such as Raspi Cam v2, OAK-1, OAK-D and you can even design your own if you like. There is also support for different single board computers (Raspberry Pi and Nvidia Jetson Nano) through two changable decks. You are agin free to create your own.

Demonstration

SLAM and Navigation

Real robot Gazebo Simulation

:package: Package Overview

Installation

The packages are written for and tested with ROS 1 Noetic on Ubuntu 20.04 Focal Fossa. For the real robot Ubuntu Mate 20.04 for arm64 is installed on the Raspberry Pi 4 B with 4GB. The communication between the mobile robot and the work pc is done by configuring the ROS Network, see also the documentation.

Dependencies

The required Ubuntu packages are listed in software package sections found in the documentation. Other ROS catkin packages such as rplidar_ros need to be cloned into the catkin workspace.

For an automated and simplified dependency installation process install the vcstool, which is used in the next steps.

sudo apt install python3-vcstool

:hammer: How to Build

To build the packages in this repository including the Remo robot follow these steps:

  1. cd into an existing ROS Noetic catkin workspace or create a new one:
   mkdir -p catkin_ws/src
   
  1. Clone this repository in the src folder of your ROS Noetic catkin workspace:
   cd catkin_ws/src
   
   git clone https://github.com/fjp/diffbot.git
   
  1. Execute the vcs import command from the root of the catkin workspace and pipe in the diffbot_dev.repos or remo_robot.repos YAML file, depending on where you execute the command, either the development PC or the SBC of Remo to clone the listed dependencies. Run the following command only on your development machine:
   vcs import < src/diffbot/diffbot_dev.repos
   

Run the next command on Remo robot’s SBC:

   vcs import < src/diffbot/remo_robot.repos
   
  1. Install the requried binary dependencies of all packages in the catkin workspace using the following rosdep command:
   rosdep install --from-paths src --ignore-src -r -y
   
  1. After installing the required dependencies build the catkin workspace, either with catkin_make:
   catkin_ws$ catkin_make
   

or using catkin-tools:

   catkin_ws$ catkin build
   

File truncated at 100 lines see the full file