Book Image

Programming the BeagleBone

By : Yogesh Chavan, Amit Pandurang Karpe
Book Image

Programming the BeagleBone

By: Yogesh Chavan, Amit Pandurang Karpe

Overview of this book

The whole world is moving from desktop computers to smartphones and embedded systems. We are moving towards utilizing Internet of Things (IoT). An exponential rise in the demand for embedded systems and programming in the last few years is driving programmers to use embedded development boards such as Beaglebone. BeagleBone is an ultra-small, cost-effective computer that comes with a powerful hardware. It runs a full-fledged Debian Linux OS and provides numerous electronics solutions. BeagleBone is open source and comes with an Ethernet port, which allows you to deploy IoT projects without any additions to the board. It provides plenty of GPIO, Anlaog pins, and UART, I2C, SPI pins which makes it the right choice to perform electronics projects. This gives you all the benefits of Linux kernel such as multitasking, multiusers, and extensive device driver support. This allows you to do programming in many languages including high-level languages such as JavaScript and Python. This book aims to exploit the hardware and software capabilities of BeagleBone to create real-life electronics and IoT applications quickly. It is divided into two parts. The first part covers JavaScript programs. The second part provides electronics projects and IoT applications in Python. First, you will learn to use BeagleBone as tool to write useful applications on embedded systems. Starting with the basics needed to set up BeagleBone and the Cloud9 IDE, this book covers interfacing with various electronics components via simple programs. The electronics theory related to these components is then explained in depth before you use them in a program. Finally, the book helps you create some real-life IoT applications.
Table of Contents (21 chapters)
Programming the BeagleBone
Credits
About the Author
Acknowledgment
About the Reviewers
www.PacktPub.com
Preface
BeagleBone Capes
Index

TMP36 temperature sensor circuit setup


For this exercise we need:

  • TMP36 sensor

    The TMP36 is temperature sensor created by a company named Analog Devices. It is easy to use and widely available. We get all the technical information about the TMP36 sensor in its datasheet. It is available at: http://www.analog.com/en/mems-sensors/digital-temperature-sensors/tmp36/products/product.html.

    TMP36 can measure temperature from -40°C to 125°C with a maximum ±2°C error. It is not good for checking human body temperature because the relative error is large enough to show bad health as good. But it is good in fire alarms, environment control systems, industrial process control systems, and so on. It needs 2.7V to 5.5V as input voltage to function. It gives output voltage 750mV at 25°C temperature. It has an output scale factor of 10mV/°C. So, it gives 0V at -50°C and increases with 10mV/°C. The voltage to Celsius temperature conversion equation for TMP36 is:

    Temperature = 100 * Voltage(measured) - 50...