Gordon Henderson | 3fbc564 | 2013-03-24 20:04:07 +0000 | [diff] [blame] | 1 | /* |
| 2 | * pwm.c: |
Phil Howard | 26c7fe3 | 2016-02-27 16:03:10 +0000 | [diff] [blame] | 3 | * This tests the hardware PWM channel. |
Gordon Henderson | 3fbc564 | 2013-03-24 20:04:07 +0000 | [diff] [blame] | 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 | */ |
Gordon Henderson | ae40bda | 2012-08-28 18:37:54 +0100 | [diff] [blame] | 24 | |
Gordon Henderson | ae40bda | 2012-08-28 18:37:54 +0100 | [diff] [blame] | 25 | #include <wiringPi.h> |
Gordon Henderson | ae40bda | 2012-08-28 18:37:54 +0100 | [diff] [blame] | 26 | |
Phil Howard | 26c7fe3 | 2016-02-27 16:03:10 +0000 | [diff] [blame] | 27 | #include <stdio.h> |
| 28 | #include <stdlib.h> |
| 29 | #include <stdint.h> |
Gordon Henderson | ae40bda | 2012-08-28 18:37:54 +0100 | [diff] [blame] | 30 | |
Phil Howard | 26c7fe3 | 2016-02-27 16:03:10 +0000 | [diff] [blame] | 31 | int main (void) |
Gordon Henderson | ae40bda | 2012-08-28 18:37:54 +0100 | [diff] [blame] | 32 | { |
Phil Howard | 26c7fe3 | 2016-02-27 16:03:10 +0000 | [diff] [blame] | 33 | int bright ; |
| 34 | |
| 35 | printf ("Raspberry Pi wiringPi PWM test program\n") ; |
Gordon Henderson | ae40bda | 2012-08-28 18:37:54 +0100 | [diff] [blame] | 36 | |
| 37 | if (wiringPiSetup () == -1) |
Phil Howard | 26c7fe3 | 2016-02-27 16:03:10 +0000 | [diff] [blame] | 38 | exit (1) ; |
Gordon Henderson | ae40bda | 2012-08-28 18:37:54 +0100 | [diff] [blame] | 39 | |
Phil Howard | 26c7fe3 | 2016-02-27 16:03:10 +0000 | [diff] [blame] | 40 | pinMode (1, PWM_OUTPUT) ; |
Gordon Henderson | ae40bda | 2012-08-28 18:37:54 +0100 | [diff] [blame] | 41 | |
| 42 | for (;;) |
| 43 | { |
Phil Howard | 26c7fe3 | 2016-02-27 16:03:10 +0000 | [diff] [blame] | 44 | for (bright = 0 ; bright < 1024 ; ++bright) |
| 45 | { |
| 46 | pwmWrite (1, bright) ; |
| 47 | delay (1) ; |
| 48 | } |
Gordon Henderson | ae40bda | 2012-08-28 18:37:54 +0100 | [diff] [blame] | 49 | |
Phil Howard | 26c7fe3 | 2016-02-27 16:03:10 +0000 | [diff] [blame] | 50 | for (bright = 1023 ; bright >= 0 ; --bright) |
| 51 | { |
| 52 | pwmWrite (1, bright) ; |
| 53 | delay (1) ; |
| 54 | } |
Gordon Henderson | ae40bda | 2012-08-28 18:37:54 +0100 | [diff] [blame] | 55 | } |
Phil Howard | 26c7fe3 | 2016-02-27 16:03:10 +0000 | [diff] [blame] | 56 | |
| 57 | return 0 ; |
Gordon Henderson | ae40bda | 2012-08-28 18:37:54 +0100 | [diff] [blame] | 58 | } |