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

Making our program run automatically

One of our last steps here is to make this Python program run automatically. First, we need to make the program we just wrote executable by typing sudo chmod +x ./gpsTracker.py. Now, will create our service definition file by typing this:

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

Now, type the definition into it:

[Unit]
Description=GPS Tracker Service
After=multi-user.target

[Service]
Type=idle
ExecStart=/home/pi/WearableTech/Chapter9/gpsTracker.py

[Install]
WantedBy=multi-user.target

Save and exit Nano by typing Ctrl + O, followed by Enter, and then Ctrl + X. Now reload the systemd daemon and activate our service by typing this:

sudo systemctl daemon-reload
sudo systemctl enable gpsTracker.service

As we have combined the function of our Shutdown button into this Python program, we can now also stop that service from running by typing 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}