• Insights
    • Webinars
    • Blog
    • Perspectives
    • Toolboxes
    • Events
    • Awards
  • Offering
    • Academy
      • Innovation courses
      • Innovation programs
    • Consulting
      • Onsite consultants
      • Project management
    • Services
      • Scout it
        • Business & strategy
        • Technology management
      • Invent it
        • Proposition management
        • Feasibility & IP development
      • Create it
        • Strategic design
        • Demonstrators & prototypes
      • Scale it
        • Go-to-market
        • Industrialization & production
    • Funding
      • Innovation grants
      • Seed capital
      • Subsidy applications
    • Solutions
      • MyStartUp
      • MyStartUp Portfolio
      • MyInnovationFactory
      • MyInnovationTalent
      • MyFutureProduct
  • Markets
    • Smart Space & Security
    • Smart FMCG
    • Smart Life Sciences
    • Smart Industry
  • Capabilities
    • Strategic Innovation
      • OpenLab
      • DesignLab
      • InnoLab
    • Digital innovation
      • AILab
      • DigitalLab
      • EmbeddedLab
    • Product innovation
      • MechLab
      • PhysicsLab
      • FabLab
    • High-tech innovation
      • OpticsLab
  • Technologies
    • Technology portfolio
    • IoT & sensors
    • AI & data science
    • Robotics & autonomy
    • Cooling, heating & fluidics
  • About
    • Our story
    • News
  • Jobs
  • Contact
Verhaert Masters in InnovationVerhaert Masters in Innovation
Verhaert Masters in InnovationVerhaert Masters in Innovation
  • Insights
        • Insights

        • Perspectives
        • Blog
        • Webinars
        • Toolboxes
        • Awards
  • Offering
        • Services

        • Consulting

        • Academy

        • Funding

        • Solutions

        • Scout it
          • Business & strategy
          • Technology management
        • Invent it
          • Proposition management
          • IP management & feasibility
        • Create it
          • Strategic design
          • Demonstrators & prototypes
        • Scale it
          • Go-to-market
          • Industrialization & production
        • Onsite consultants
        • Project management
        • Innovation courses
        • Innovation programs
        • Subsidy applications
        • Seed capital
        • Innovation grants
        • MyStartUp
          • Boost your venture
          • Find your incubation program
          • MyStartUp Portfolio
        • MyInnovationFactory
          • Adjacent innovation for corporates
        • MyInnovationTalent
          • Boost your innovation capacity with on-site consultants
        • MyFutureProduct
          • Make your product smart & future-proof
  • Markets
        • Smart Space & Security

        • Microgravity
          Earth observation
          Navigation
          Exploration
          Security
        • Smart FMCG

        • Dispensers
          Cooling & heating
          Servers
          Smart packaging
          Vending equipment
        • Smart Life Sciences

        • MedTech
          BioTech
          HealthTech
          Ophthalmic
        • Smart Industry

        • Mobility & logistics
          Chemical & material
          Home, building & construction
          Manufacturing & equipment
          Energy
  • Capabilities
        • Strategic innovation

        • OpenLab
        • DesignLab
        • InnoLab
        • Digital innovation

        • DigitalLab
        • AILab
        • EmbeddedLab
        • Product innovation

        • MechLab
        • PhysicsLab
        • FabLab
        • High-tech innovation

        • OpticsLab
  • Technologies
        • Technologies

        • IoT & sensors
        • AI & data science
        • Robotics & autonomy
        • Cooling, heating & fluidics
        • Portfolio

  • About
        • About

        • News
        • Our story
  • Jobs
  • Contact

Robotics reinvented: a beginner’s guide to ROS

8 February 2023 Posted by Daniel Gheorghita Digital innovation

Robot operating systems are taking over the world of robotics by storm. This open-source software sensation offers a standardized way to program robots, making it easier and more efficient to develop complex robotic systems. With its wide range of capabilities, customization, integration and user-friendly design, it’s no wonder it’s being considered the future of robotics. So how does it work, and why should you consider it? Let’s take a look together!

Banner the magic behind ROS software

Let’s start by clearing out two main misconceptions about the Robot Operating System (ROS). First of all, it’s not an operating system (OS) and it’s not just useful for robots. But since a ‘Not-Only-For-Robots Not-An-Operating-System’ isn’t quite as catchy, let’s refer to it by its original community-accepted name. Secondly, in this blog we’ll only refer to the robotic mechanical devices and NOT to robotic process automation software.

ROS, what?

What is ROS then? It’s actually a middleware. This means that it’s supposed to be placed between software logic and hardware. It’s similar to a real operating system but needs an operating system platform to run on (usually a Linux distribution). It can’t simply run directly on basic hardware. Moreover, devices need an ROS-specific interface to make use of their power, similar to how operating systems need drivers to access hardware resources.

So if it’s not just for robotics, why does it have ‘robot’ in the name? Because it was developed by the robotics community to be used with robots. Even though it can be used with applications that are not robots, most of the development efforts are directed toward perception, navigation and manipulation tasks. This means that highly complex robotic functionalities are already available in the ROS ecosystem.

ROS, how?

Let’s discuss the core power of ROS: nodes and topics. Nodes are somewhat the atomic pieces of software that implement a desired logic, like retrieving sensor data, capturing images, processing input data or sending input to an actuator. Topics are the communication links between nodes, independent entities that nodes can write or read data from – imagine them as lists of messages like internet chat rooms. These simple mechanisms allow the creation of complex distributed and robust architectures, where the overall system isn’t entirely dependent on the individual. As long as the system design allows it, the entire system is sensor and actuator-agnostic. Imagine a random vacuum cleaner robot: the navigation module doesn’t care if the localization uses lidar, ultrasonic or camera data, or if it’s using wheels, tracks or a propeller to move around.

These components should be easily replaceable, the only necessity is the right ROS node to take the hardware input and offer a standardized output on a specific topic (a driver-like piece of software, as we mentioned before). And here’s another very cool thing: each node can be on a separate computing platform or as many nodes as possible can share the same computing platform at the same time. It’s all up to the application architect to decide. The only prerequisite for ROS is to have a special ‘master’ node running that can be accessed by every other node. The drawback is that if the computing platform running the ‘master node’ disconnects from the system, then the entire system fails.

ROS topology example ROS topology car application

ROS topology example and in an autonomous car application ©VERHAERT

Above you can find an example of such a topology, as well as applied to a simplified autonomous car application. Keep in mind that each one of these nodes can be on the same or different computer as any of the other nodes. You can even deploy this system on multiple autonomous vehicles and then simply add topics that connect multiple vehicles. The limit of the scalability is set only by the computing or networking resources available.

ROS, why?

‘Standardized’ is another keyword for ROS. Its main goal is to offer a base for true rapid robot prototyping. In 2006, Eric and Keeman decided to create a standard framework for all robots (not yet ROS) when they noticed that in software projects there’s little time left to innovate because most of your time is spent simply making the sensors or actuators work with your system or setting up a communication architecture. The ROS is the successor to their initial framework and it fills the shoes perfectly. No more reinventing the wheel. Once a sensor, actuator or algorithm is successfully interfaced by a developer (or a group), it gets an ROS package made available for everyone to use!

Source: Eric and Keenan pitch deck

We’ve mentioned ‘true rapid prototyping’ before, which might have triggered your spider sense if you’ve spent some time between demonstrators, prototypes and products. Some people tend to oversell the former as the latter, but that’s not the case here. ROS is indeed a prototyping system: it’s not robust enough, doesn’t have real-time capabilities and is easily hackable. Moreover, the master node is required to function at all times.

ROS, next?

ROS2, on the other hand, has a completely different low-level implementation of ROS. It’s still based on nodes and topics, but is far from being a prototyping project and aims to be an industry-ready fully-distributed framework. It has more complex robotic libraries for navigation and manipulation that implement state-of-the-art algorithms and is designed so you can’t develop your packages without abiding by proper software engineering rules. It’s now harder to just create ‘something dirty that works for now’.

Other major changes include the ability to encrypt topics and time synchronization is being handled by the Data Distribution Service, a software framework to reliably and securely communicate in real-time. Furthermore, ROS2 doesn’t have a master node, meaning the application can be entirely distributed across multiple devices without having the inherent critical component. Pretty neat I would say.

Let’s reiterate the key aspects of ROS:

  1. Core simplicity
  2. Standardization of components
  3. Native compatibility with distributed systems
  4. Industrial readiness (on the way with ROS2)
  5. Available for embedded systems (on the way with ROS2)

It’s clear that ROS is a software to watch. Whether you’re developing a fleet of drones, robot vacuum cleaner, robotic manipulation application, coffee machine or smart beer dispenser, make sure to add this awesome open-source framework in your trade-offs!

Hungry for more? Check out our other blog posts to see how ROS connects hardware with AI!

Tags: RoboticsSensorssoftware development
Share
0

About Daniel Gheorghita

This author hasn't written their bio yet.
Daniel Gheorghita has contributed 2 entries to our website, so far.View entries by Daniel Gheorghita

You also might be interested in

When reducing ultrafine particles becomes a matter of health

When reducing ultrafine particles becomes a matter of health

Nov 4, 2022

When reducing Ultra-Fine Particles becomes a matter of health

Featured image - Perspective - WEEE

Waste of Electrical and Electronic Equipment (WEEE)

Feb 13, 2018

How to embrace Waste of Electrical and Electronic Equipment (WEEE) and foster sustainable growth?

Defining the right drivetrain for active limb prostheses & ortheses

Defining the right drivetrain for active limb prostheses & ortheses

Nov 3, 2021

Because of high human interaction, developing active prostheses and ortheses implies specific challenges, especially when considering the drivetrain. Discover how to define the right type and build it.

Like this blog? Subscribe to the blogmail and don't miss any content!
Latest digital innovation blogposts
  • 20/03/2023
    Unlocking next-gen FMCG appliances with AI
  • 08/02/2023
    Robotics reinvented: a beginner’s guide to ROS
  • 12/01/2023
    AI, the rising star in earth observation
  • 16/12/2022
    The future of energy-efficient AI systems
  • 07/12/2022
    Maximizing customer engagement: AI and data in FMCG

Verhaert Masters in Innovation is a pioneering innovation group helping companies and entrepreneurs to innovate, creating new products, businesses and services.

Verhaert icon LinkedIn Verhaert icon Facebook Verhaert icon SlideShare Verhaert icon YouTube Verhaert icon Twitter

SERVICES
FUNDING
SOLUTIONS
MARKETS
CAPABILITIES
TECHNOLOGY
PERSPECTIVES
BLOGS
WEBINARS
ABOUT
NEWS
JOBS
CONTACT

© 2023 Verhaert New Products & Services NV • BE 0439.039.420 • Privacy policy • Terms of use

Prev Next