blink-thread.c 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*
  2. * blink-thread.c:
  3. * Standard "blink" program in wiringPi. Blinks an LED connected
  4. * to the first GPIO pin.
  5. *
  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. #include <stdio.h>
  26. #include <wiringPi.h>
  27. // LED Pin - wiringPi pin 0 is BCM_GPIO 17.
  28. #define LED 0
  29. PI_THREAD (blinky)
  30. {
  31. for (;;)
  32. {
  33. digitalWrite (LED, HIGH) ; // On
  34. delay (500) ; // mS
  35. digitalWrite (LED, LOW) ; // Off
  36. delay (500) ;
  37. }
  38. }
  39. int main (void)
  40. {
  41. printf ("Raspberry Pi blink\n") ;
  42. wiringPiSetup () ;
  43. pinMode (LED, OUTPUT) ;
  44. piThreadCreate (blinky) ;
  45. for (;;)
  46. {
  47. printf ("Hello, world\n") ;
  48. delay (600) ;
  49. }
  50. return 0 ;
  51. }