In this video you will learn how to use the sound_play package for working with sound in ROS. You can use it for playing sounds from sound files or to make Text to Speech. Here you will also learn how to play sounds in a python notebook in ROS Development Studio. At the end you will learn how to apply all this to your Raspberry Pi.
This is a quick guide on how to get your Raspberry Pi up and running to start your first steps into robotics with ROS (Kinetic).
This guide is a compilation of methods described by other people so please do check out the links if you need more detailed explanations.
In this guide you are going to learn how to:
Prepare a MicroSD card with Ubuntu Mate Operation System for Raspberry Pi 2 or 3.
Get the LCD screen up and running
Install Full ROS Kinetic
Setup your Raspberry Pi camera
Publish Image Stream into ROS Topics
What to do after this
Apendix-1: Bill of Materials
Apendix-2: Reference Links
You can find all the Bill of materials at the bottom of the post just in case you want the exact same setup.
So let’s get to it, shall we?
Install Ubuntu Mate Operation System in Raspberry Pi
From now on, this post supposes that you have all the material used in this example. If not please refer to the Bill of Materials. So normally you will have already an OS installed in your starter kit MicroSD card with NOOBS. But we want to have the full Ubuntu experience, which will make installing ROS Kinetic much easier.
For this part, we will use an Ubuntu machine, but the process will be slightly different for Windows or Mac-OS.
Now just plug your Raspberry Pi to your outlet and to a monitor through HDMI and … There you have it!
Get the LCD screen up and running
Now that you have your Raspberry Pi with Ubuntu-Mate just type in a terminal in your Raspberry Pi ( just connect the HDMI cable to your closest monitor):
Ok, you have now Ubuntu with a cute LCD screen. Now to install Full ROS Kinetic, with gazebo simulator, RVIZ and everything you need for robotics projects. Go to a terminal in your Raspberry Pi and type:
Now open the file /boot/config.txt and add the following two lines at the bottom of the file:
start_x=1
gpu_mem=128
And then just reboot the Raspberry Pi:
sudo reboot
Then to test that everything went ok and works, just execute this tiny python script. If you get the image, then the camera is working perfectly:
import picamera
camera = picamera.PiCamera()
camera.capture('mytest_image.jpg')
camera.close()
Publish Image Stream into ROS Topics
But we need to publish our camera images into ROS, so that we can then use the thousands of ROS packages to do all the nice robotics stuff that we love!
For that we are going to use a ROS package created for this purpose: Publish Raspberry Pi Camera images into an image rostopic. Go to a terminal in your Raspberry Pi and type:
cd ~/catkin_ws/src
git clone https://github.com/dganbold/raspicam_node.git
cd ~/catkin_ws/
catkin_make --pkg raspicam_node
If the compilation went Ok, you now can use it. For this, you have to first start the node with all the services for the camera.
cd ~/catkin_ws/
source devel/setup.bash
roslaunch raspicam_node camera_module_v2_640x480_30fps.launch
Then on another terminal, start the Camera service, which will activate the camera and start publishing. You can see that it worked because when started a red LED will light up on the camera.
rosservice call /raspicam_node/start_capture
camera_on
And now you are ready to view the images and use them in ROS. You can use rqt_image_view, for example, to connect to the image published in a topic and see it. here are two options to see the video stream:
Well, you should learn how to use ROS Kinetic and harness all its power! Try this ROS in 5 days Course.
Object Recognition, Perception, Person Detection/Recognition, create a simulation of your future robot that will be controlled by your ROS Raspberry Pi…
The best place to do it FAST and EASY is in RobotIgniteAcademy. There you will learn this and much more.
ROS Development Studio (ROSDS)
Want to practice freely, try ROSDevelopment Studio, here you will be able to test all your programs first in simulation and when they are ready, deploy them into your ROS Raspberry Pi without any conversion.
[irp posts=”12183″ name=” How to build the Structure of a ROS Raspberry Pi Robot #Ep.1″]
Apendix-1: BOM
Here you have a list of all the materials used for this tutorial of ROS Raspberry Pi: