Search icon CANCEL
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Wearable-Tech Projects with the Raspberry Pi Zero

You're reading from  Wearable-Tech Projects with the Raspberry Pi Zero

Product type Book
Published in Jul 2017
Publisher Packt
ISBN-13 9781786468819
Pages 184 pages
Edition 1st Edition
Languages
Author (1):
Jon Witts Jon Witts
Profile icon Jon Witts

Table of Contents (10) Chapters

Preface 1. About the Raspberry Pi 2. Scrolling LED Badge 3. Sewable LEDs in Clothing 4. A Motion-Reactive LED Cap 5. A Tweet-Activated LED T-Shirt 6. An LED Laptop Bag 7. Creating Your Own Pedometer 8. Creating Your Own Heart Rate Monitor 9. Creating Your Own GPS Tracker

Conventions

In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning. Code words in text, database table names, folder names, filenames, file extensions, path names, dummy URLs, user input, and Twitter handles are shown as follows: "We start a while True: loop, which will continue until we stop the program." A block of code is set as follows:

 def adxlToRGB(axis):
axes = adxl345.getAxes(True)
absADXL = abs(axes[axis])
if (absADXL >= 1):
absADXL = 1
rgbADXL = int(255 * absADXL)
return rgbADXL

When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:

 def adxlToRGB(axis):
axes = adxl345.getAxes(True)
absADXL = abs(axes[axis])
if (absADXL >= 1):
absADXL = 1
rgbADXL = int(255 * absADXL)
return rgbADXL

Any command-line input or output is written as follows:

sudo nano /lib/systemd/system/wearableHat.service

New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "Click on the blue Select image button and browse to the Jessie Lite zip archive you just downloaded"

Warnings or important notes appear like this.
Tips and tricks appear like this.
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €14.99/month. Cancel anytime}