Book Image

BeagleBone By Example

By : Pei JIA, Jayakarthigeyan Prabakar, Alexander Hiam
Book Image

BeagleBone By Example

By: Pei JIA, Jayakarthigeyan Prabakar, Alexander Hiam

Overview of this book

BeagleBone is a low cost, community-supported development platform to develop a variety of electronic projects. This book will introduce you to BeagleBone and get you building fun, cool, and innovative projects with it. Start with the specifications of BeagleBone Black and its operating systems, then get to grips with the GPIOs available in BeagleBone Black. Work through four types of exciting projects: building real-time physical computing systems, home automation, image processing for a security system, and building your own tele-controlled robot and learn the fundamentals of a variety of projects in a single book. By the end of this book, you will be able to write code for BeagleBone in order to operate hardware and impart decision-making capabilities with the help of efficient coding in Python.
Table of Contents (17 chapters)
BeagleBone By Example
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface
Index

Basic elements of physical computing systems


In this section, you will learn what physical computing systems are composed of. First, we will see the basic structure of input and output elements and how to act and react, followed by the structure of it based on the electrical, electronic, and software aspects, including the input and output of the system. At the end, we will try to get a much clearer picture of the same concepts with examples.

The basic structure of a physical computing system comprises sensors, which can be either analog or digital, that will take input from the physical world using input sensors that are connected to the hardware of the physical computing system, as shown in the following diagram:

These inputs will be read by the software running on the electronic microprocessors and controllers on the physical computing system. Based on that software, a decision will be taken to provide the output and this output is converted from digital to analog form or makes a change...