chiark / gitweb /
wiringPi Version 2 - First commit (of v2)
[wiringPi.git] / examples / PiFace / blink.c
1 /*
2  * blink.c:
3  *      Simple "blink" test for the PiFace interface board.
4  *
5  * Copyright (c) 2012-2013 Gordon Henderson. <projects@drogon.net>
6  ***********************************************************************
7  * This file is part of wiringPi:
8  *      https://projects.drogon.net/raspberry-pi/wiringpi/
9  *
10  *    wiringPi is free software: you can redistribute it and/or modify
11  *    it under the terms of the GNU Lesser General Public License as published by
12  *    the Free Software Foundation, either version 3 of the License, or
13  *    (at your option) any later version.
14  *
15  *    wiringPi is distributed in the hope that it will be useful,
16  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *    GNU Lesser General Public License for more details.
19  *
20  *    You should have received a copy of the GNU Lesser General Public License
21  *    along with wiringPi.  If not, see <http://www.gnu.org/licenses/>.
22  ***********************************************************************
23  */
24
25 #include <stdio.h>
26
27 #include <wiringPi.h>
28 #include <piFace.h>
29
30 // Use 200 as the pin-base for the PiFace board, and pick a pin
31 //      for the LED that's not connected to a relay
32
33 #define PIFACE  200
34 #define LED     (PIFACE+2)
35
36 int main (int argc, char *argv [])
37 {
38   printf ("Raspberry Pi PiFace Blink\n") ;
39   printf ("=========================\n") ;
40
41 // Always initialise wiringPi. Use wiringPiSys() if you don't need
42 //      (or want) to run as root
43
44   wiringPiSetupSys () ;
45
46 // Setup the PiFace board
47
48   piFaceSetup (PIFACE) ;
49
50   for (;;)
51   {
52     digitalWrite (LED, HIGH) ;  // On
53     delay (500) ;               // mS
54     digitalWrite (LED, LOW) ;   // Off
55     delay (500) ;
56   }
57
58   return 0 ;
59 }