Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Banana Pi Cookbook

You're reading from  Banana Pi Cookbook

Product type Book
Published in Jun 2015
Publisher
ISBN-13 9781783552443
Pages 200 pages
Edition 1st Edition
Languages
Author (1):
Ryad El-Dajani Ryad El-Dajani
Profile icon Ryad El-Dajani

Programming the LED


Switching on an LED by a command is one thing. The other is controlling the LED programmatically. In this recipe, we are going to write a real program in C and in Python to switch the LED on and off periodically.

Getting ready

We require the very same breadboard construction from the previous recipe:

  • A Linux system on the Banana Pi

  • Access to the shell

  • A 5 mm LED (forward voltage 2.0 V)

  • A 470 Ω resistor

  • A breadboard

  • Two female to male jumper wires

Construct the circuit as we have seen previously.

How to do it…

Once we have the construction, we can proceed with the steps given in the following sections.

Programming the LED with C

We start by programming the LED in the classic C programming language.

  1. Power on your Banana Pi.

  2. Open a shell.

  3. Create a source code directory and change location to it:

    $ mkdir ~/source
    $ cd ~/source
    
  4. Create a source file using nano:

    $ nano led_test.c
    
  5. The nano editor will open. Write the following code in C:

    #include <wiringPi.h>
    
    int main(void) {
            ...
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 $15.99/month. Cancel anytime}