mraa: rename from maa to mraa
[contrib/mraa.git] / examples / blink-io.c
1 /*
2  * Author: Brendan Le Foll <brendan.le.foll@intel.com>
3  * Copyright (c) 2014 Intel Corporation.
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining
6  * a copy of this software and associated documentation files (the
7  * "Software"), to deal in the Software without restriction, including
8  * without limitation the rights to use, copy, modify, merge, publish,
9  * distribute, sublicense, and/or sell copies of the Software, and to
10  * permit persons to whom the Software is furnished to do so, subject to
11  * the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be
14  * included in all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23  */
24
25 #include <stdio.h>
26 #include <unistd.h>
27 #include <errno.h>
28 #include <signal.h>
29 #include <stdlib.h>
30
31 #include "mraa.h"
32
33 #define DEFAULT_IOPIN 8
34
35 int running = 0;
36 static int iopin;
37
38 void
39 sig_handler(int signo)
40 {
41     if (signo == SIGINT) {
42         printf("closing IO%d nicely\n", iopin);
43         running = -1;
44     }
45 }
46
47 int
48 main(int argc, char **argv)
49 {
50     mraa_result_t r = MRAA_SUCCESS;
51     iopin = DEFAULT_IOPIN;
52
53     if (argc < 2) {
54         printf("Provide an int arg if you want to flash on something other than %d\n", DEFAULT_IOPIN);
55     } else {
56         iopin = strtol(argv[1], NULL, 10);
57     }
58
59     mraa_init();
60     fprintf(stdout, "MRAA Version: %s\nStarting Blinking on IO%d\n",
61             mraa_get_version(), iopin);
62
63     mraa_gpio_context gpio;
64     gpio = mraa_gpio_init(iopin);
65     if (gpio == NULL) {
66         fprintf(stderr, "Are you sure that pin%d you requested is valid on your platform?", iopin);
67         exit(1);
68     }
69     printf("Initialised pin%d\n", iopin);
70
71     // set direction to OUT
72     r = mraa_gpio_dir(gpio, MRAA_GPIO_OUT);
73     if (r != MRAA_SUCCESS) {
74         mraa_result_print(r);
75     }
76
77     signal(SIGINT, sig_handler);
78
79     while (running == 0) {
80         r = mraa_gpio_write(gpio, 0);
81         if (r != MRAA_SUCCESS) {
82             mraa_result_print(r);
83         } else {
84             printf("off\n");
85         }
86
87         sleep(1);
88
89         r = mraa_gpio_write(gpio, 1);
90         if (r != MRAA_SUCCESS) {
91             mraa_result_print(r);
92         } else {
93             printf("on\n");
94         }
95
96         sleep(1);
97     }
98
99     r = mraa_gpio_close(gpio);
100     if (r != MRAA_SUCCESS) {
101         mraa_result_print(r);
102     }
103
104     return r;
105 }