blob: a53fbf3188ab5e1a4b02c68307a9c37cdef58bc4 [file] [log] [blame]
Phil Howard26c7fe32016-02-27 16:03:10 +00001/*
Deokgyu Yang89cf23c2020-03-19 17:21:21 +09002 * blink-thread.c:
3 * Standard "blink" program in wiringPi. Blinks an LED connected
4 * to the first GPIO pin.
Phil Howard26c7fe32016-02-27 16:03:10 +00005 *
6 * Copyright (c) 2012-2013 Gordon Henderson. <projects@drogon.net>
7 ***********************************************************************
8 * This file is part of wiringPi:
9 * https://projects.drogon.net/raspberry-pi/wiringpi/
10 *
11 * wiringPi is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License as published by
13 * the Free Software Foundation, either version 3 of the License, or
14 * (at your option) any later version.
15 *
16 * wiringPi is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License for more details.
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * along with wiringPi. If not, see <http://www.gnu.org/licenses/>.
23 ***********************************************************************
24 */
25
26#include <stdio.h>
27#include <wiringPi.h>
28
Deokgyu Yang89cf23c2020-03-19 17:21:21 +090029// LED Pin - wiringPi pin 0 is BCM_GPIO 17.
30
31#define LED 0
32
33PI_THREAD (blinky)
34{
35 for (;;)
36 {
37 digitalWrite (LED, HIGH) ; // On
38 delay (500) ; // mS
39 digitalWrite (LED, LOW) ; // Off
40 delay (500) ;
41 }
42}
43
Phil Howard26c7fe32016-02-27 16:03:10 +000044
45int main (void)
46{
Deokgyu Yang89cf23c2020-03-19 17:21:21 +090047 printf ("Raspberry Pi blink\n") ;
Phil Howard26c7fe32016-02-27 16:03:10 +000048
49 wiringPiSetup () ;
Phil Howard26c7fe32016-02-27 16:03:10 +000050 pinMode (LED, OUTPUT) ;
51
Deokgyu Yang89cf23c2020-03-19 17:21:21 +090052 piThreadCreate (blinky) ;
53
Phil Howard26c7fe32016-02-27 16:03:10 +000054 for (;;)
55 {
Deokgyu Yang89cf23c2020-03-19 17:21:21 +090056 printf ("Hello, world\n") ;
57 delay (600) ;
Phil Howard26c7fe32016-02-27 16:03:10 +000058 }
59
60 return 0 ;
61}