Getting Started with Robot Operating System

ROS?

ROS or Robot Operating System is a framework for writing Robot Software.

Why I started with ROS?

ROS is a framework that has a long vision and industry pundits are putting lot of money and backing into it. There is a lot of hidden agenda that ROS powers lots of IOT based projects that include robots or any form of Robotics in it.

Why ROS is useful?

Nowadays we find it very difficult to find a way to program robots in all sorts of manner. Our primary concern is cost reduction. To start with where do we go now..."OPEN SOURCE" .

While I was planning my next project with my team mate Pooja Baraskar who always have a keen awareness to know new things and suggests some innovative solutions, she came up with an idea to dig in deep with Robotics with IOT. I went further and together we found that ROS is very helpful.

Reasons

  1. Ubuntu----"Open Source".
  2. C++ ---- "Fast Compilation".
  3. Easily extendable.
  4. Libraries such as Open CV and others.

Now here's a list of what the article will consist of:

  1. Creation Virtual Machine
    Ubuntu 14.04.3
  2. Install ROS
  3. Setup it

Creation of VM

I will start with MWare Workstation to design my first VM:



Then choose the image Ubuntu 14.04.3 .



I allocated 2GB of virtual ram.



Let's Start when OS is fired up.

Login with your credentials.

Open Terminal and a browser

Go to http://wiki.ros.org/ROS/Installation



Generally from here on the installation becomes tricky because you will face lot of errors. I will just guide you through.

I used the Singapore mirror as I found it more easy from the other ones (those who failed)

Sudo sh -c '. /etc/lsb-release && echo "deb http://mirror-ap.packages.ros.org/ros/ubuntu/ $DISTRIB_CODENAME main" > /etc/apt/sources.list.d/ros-latest.list'

Put this in terminal, in the next step it will ask for your root password.

This helps in setting your sources list.

Now comes the scenario where we need to setup keys.

Sudo apt-key adv --keyserver hkp://pool.sks-keyservers.net --recv-key 0xB01FA116

There can be errors.

GPG errors.



Redo the command once again and you will be good to go.



To check package indexing is complete.

Sudo apt-get update

Here is a catch, generally I saw that there is an issue when you directly install the full desktop version. Now the best way would be:

  • Go to the ROS-Base that is Barebones
  • sudo apt-get install ros-jade-ros-base
  • And then the full desktop version.
  • sudo apt-get install ros-jade-desktop-full





The OpenCV package gets installed and you see why it is useful as we can use different camera options, integrating gestures into your robot and can start interaction with sensors in it.

Now we need to get rid of the dependencies for ROS, so we need to use this command.

sudo rosdep init



It will automatically prompt you for next command.

rosdep update





As you can see at the bottom you will find there are distros added such as Groovy, Hydro, Indigo, and Jade.

These are different version of ROS Jade being the latest.

Getting your Environment right:

As Linux is for bash we need to setup that as we initiate a shell whenever we open it.

echo "source /opt/ros/jade/setup.bash" >> ~/.bashrc
source ~/.bashrc




This is a start to ROS which is next big bet in IOT and with this glimpse I hope everybody will be able to start afresh. This article is dedicated to Pooja Barskar who is just like a livewire in IOT and it's because of her effort I was able to discover this wonderful Robot Operating System meant for IOT. Hope you will like it.

References


http://wiki.ros.org/

Up Next
    Ebook Download
    View all
    Learn
    View all