Book Image

Python Robotics Projects

By : Prof. Diwakar Vaish
Book Image

Python Robotics Projects

By: Prof. Diwakar Vaish

Overview of this book

Robotics is a fast-growing industry. Multiple surveys state that investment in the field has increased tenfold in the last 6 years, and is set to become a $100-billion sector by 2020. Robots are prevalent throughout all industries, and they are all set to be a part of our domestic lives. This book starts with the installation and basic steps in configuring a robotic controller. You'll then move on to setting up your environment to use Python with the robotic controller. You'll dive deep into building simple robotic projects, such as a pet-feeding robot, and more complicated projects, such as machine learning enabled home automation system (Jarvis), vision processing based robots and a self-driven robotic vehicle using Python. By the end of this book, you'll know how to build smart robots using Python.
Table of Contents (24 chapters)
Title Page
Packt Upsell
Contributors
Preface
Index

Degrees of freedom


Not every robotic arm is the same. They have different load ratings, that is, the maximum load that the end effector can take, the speed and reach, that is, how far the end effector can reach. However, one very important part of a robotic arm is the number of motors it has. So, for every axis, you need at least one motor to make the robot traverse in that axis. For example, a human arm has three-dimensional freedom in the shoulder joint. Hence, to mimic that joint, you will need a motor for every axis, that is, a minimum of three motors are required for the arm to move in all the three axis, independently. Similarly, when we talk about the elbow joint of our hand, it can only traverse in two dimensions. That is the closing and opening of the arm and the finally the rotation of the arm—the elbow does not move in the third dimension. Hence, to replicate its motion, we need at least two motors, so that we an move the robot in the w axis.

From what we have understood so far...