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

Explanation


First, we wanted to use /bin/sh to interpret this file. By default, the sysfs files for particular pins are not created until we export them. We echoed 68 to the /sys/class/gpio/export file. This is a request to kernel to export the control of GPIO numbered 68 to the user space. After this command, the /sys/class/gpio68 folder gets created with the control files in it. Now, we can interact with these control files that will actually change the pin state. As we have attached an output LED to the P8_10 pin, we set the direction to out. As regular GPIO steps, we have to set the direction of P8_10 as output. Then, we can turn it on/off by writing 0/1 in the special sysfs file, /sys/class/gpio/gpio68/value. We created an infinite loop using while(true), and in the loop, we write 0 and 1 to the sysfs file after a second. When we write 1 on this file, the LED attached to P8_10 will turn on. After a second, we write 0 on this file, which turns the LED off. You can get more information in the kernel documentation of the gpio sysfs interface at https://www.kernel.org/doc/Documentation/gpio/sysfs.txt. This way of accessing GPIO is possible on any Linux system (including Android).