Book Image

Learning Robotics using Python - Second Edition

By : Lentin Joseph
Book Image

Learning Robotics using Python - Second Edition

By: Lentin Joseph

Overview of this book

Robot Operating System (ROS) is one of the most popular robotics software frameworks in research and industry. It has various features for implementing different capabilities in a robot without implementing them from scratch. This book starts by showing you the fundamentals of ROS so you understand the basics of differential robots. Then, you'll learn about robot modeling and how to design and simulate it using ROS. Moving on, we'll design robot hardware and interfacing actuators. Then, you'll learn to configure and program depth sensors and LIDARs using ROS. Finally, you'll create a GUI for your robot using the Qt framework. By the end of this tutorial, you'll have a clear idea of how to integrate and assemble everything into a robot and how to bundle the software package.
Table of Contents (12 chapters)

Chapter 9, Designing a GUI for a Robot Using Qt and Python

  1. Qt and GTK.
  2. Both bindings are almost the same, only difference is in the name. The PyQt license is GPL and PySide comes with LGPL. Also, PySide is having much documentation about its APIs.
  3. We can use Py UI compiler named pyuic.
  4. Qt slots are functions in a program that can be triggered by Qt signal. For example, clicked is a signal that can invoke a function named hello().
  5. Rqt is one of the useful GUI tool in ROS. We can create rqt plugins and can insert in the rqt gui. There are existing plugins to do visualization, debugging, and so on in rqt.