Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Wearable-Tech Projects with the Raspberry Pi Zero

You're reading from   Wearable-Tech Projects with the Raspberry Pi Zero Create imaginative, real-world wearable tech projects with the Rapsberry Pi Zero

Arrow left icon
Product type Paperback
Published in Jul 2017
Publisher Packt
ISBN-13 9781786468819
Length 184 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Jon Witts Jon Witts
Author Profile Icon Jon Witts
Jon Witts
Arrow right icon
View More author details
Toc

Table of Contents (10) Chapters Close

Preface 1. About the Raspberry Pi FREE CHAPTER 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

Writing our main Python program

Connect your USB battery to the LED matrix and power up your Pi Zero, and then connect to your Pi Zero via SSH. Move into the Adafruit_DotStar_Pi directory by typing this:

cd ~/WearableTech/Chapter6/Adafruit_DotStar_Pi

We are going to make our Python program in this directory as it contains the necessary files to connect to the DotStar strip with Python. Open a new file in Nano by typing this:

nano ledBag.py

In the empty file that opens, type the following:

#! /usr/bin/python

import time
from random import randint
from dotstar import Adafruit_DotStar

# set up our strip
numpixels = 144
strip = Adafruit_DotStar(numpixels, 12000000, order='bgr')

# start our strip
strip.begin()
strip.setBrightness(32)

In this first section of our program, we are importing our required libraries, setting up the details for our strip, and the initializing the strip...

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 €18.99/month. Cancel anytime