RaspberrPi project source code
guowenxue
2024-03-12 c5e9e88eb8c6039cd2a4d2b3fdae0b1e3d8aea40
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
/*********************************************************************************
 *      Copyright:  (C) 2021 LingYun IoT System Studio
 *                  All rights reserved.
 *
 *       Filename:  led.c
 *    Description:  This file is used to control RGB 3-colors LED
 *
 *
 * Pin connection:
 *               RGB Led Module           Raspberry Pi Board
 *                   R        <----->      #Pin33(BCM GPIO13)
 *                   G        <----->      #Pin35(BCM GPIO19)
 *                   B        <----->      #Pin37(BCM GPIO26)
 *                  GND       <----->      GND
 *
 * System install:
 *                  sudo apt install -y libgpiod-dev gpiod
 *
 *
 ********************************************************************************/
 
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <dirent.h>
#include <string.h>
#include <time.h>
#include <errno.h>
#include <signal.h>
 
#include <gpiod.h>
 
#define DELAY     500
 
#define ON        1
#define OFF       0
 
/* Three LEDs code */
enum
{
    LED_R = 0,
    LED_G,
    LED_B,
    LEDCNT,
};
 
/* Three LEDs hardware information */
typedef struct led_info_s
{
    const char         *name;  /* RGB 3-color LED name  */
    int                 gpio;  /* RGB 3-color LED BCM pin number */
    int                 active;/* RGB 3-color LED active GPIO level: 0->low 1->high */
    struct gpiod_line  *line;  /* libgpiod line */
} led_info_t;
 
static led_info_t    leds_info[LEDCNT] =
{
    {"red",   13, 1, NULL },
    {"green", 19, 1, NULL },
    {"blue",  26, 1, NULL },
};
 
/* Three LEDs API context */
typedef struct led_ctx_s
{
    struct gpiod_chip   *chip;
    led_info_t          *leds;
    int                  count;
} led_ctx_t;
 
int init_led(led_ctx_t *ctx);
int term_led(led_ctx_t *ctx);
int turn_led(led_ctx_t *ctx, int which, int cmd);
static inline void msleep(unsigned long ms);
 
 
int g_stop = 0;
 
void sig_handler(int signum)
{
    switch( signum )
    {
        case SIGINT:
        case SIGTERM:
            g_stop = 1;
 
        default:
            break;
    }
 
    return ;
}
 
int main(int argc, char *argv[])
{
    int                 rv;
    led_ctx_t           led_ctx =
    {
        .chip  = NULL,
        .leds  = leds_info,
        .count = LEDCNT,
    };
 
    if( (rv=init_led(&led_ctx)) < 0 )
    {
        printf("initial leds gpio failure, rv=%d\n", rv);
        return 1;
    }
    printf("initial RGB Led gpios okay\n");
 
    signal(SIGINT,  sig_handler);
    signal(SIGTERM, sig_handler);
 
    while( !g_stop )
    {
        turn_led(&led_ctx, LED_R, ON);
        msleep(DELAY);
        turn_led(&led_ctx, LED_R, OFF);
        msleep(DELAY);
 
        turn_led(&led_ctx, LED_G, ON);
        msleep(DELAY);
        turn_led(&led_ctx, LED_G, OFF);
        msleep(DELAY);
 
        turn_led(&led_ctx, LED_B, ON);
        msleep(DELAY);
        turn_led(&led_ctx, LED_B, OFF);
        msleep(DELAY);
    }
 
    term_led(&led_ctx);
    return 0;
}
 
int term_led(led_ctx_t *ctx)
{
    int            i;
    led_info_t    *led;
 
    printf("terminate RGB Led gpios\n");
 
    if( !ctx )
    {
        printf("Invalid input arguments\n");
        return -1;
    }
 
    if( !ctx->chip )
        return 0;
 
    for(i=0; i<ctx->count; i++)
    {
        led = &ctx->leds[i];
 
        if( led->line )
            gpiod_line_release(led->line);
    }
 
    gpiod_chip_close(ctx->chip);
    return 0;
}
 
 
int init_led(led_ctx_t *ctx)
{
    int            i, rv;
    led_info_t    *led;
 
    if( !ctx )
    {
        printf("Invalid input arguments\n");
        return -1;
    }
 
    ctx->chip = gpiod_chip_open_by_name("gpiochip0");
    if( !ctx->chip )
    {
        printf("open gpiochip failure, maybe you need running as root\n");
        return -2;
    }
 
 
    for(i=0; i<ctx->count; i++)
    {
        led = &ctx->leds[i];
 
        led->line = gpiod_chip_get_line(ctx->chip, led->gpio);
        if( !led->line )
        {
            printf("open gpioline for %s[%d] failed\n", led->name, led->gpio);
            rv = -3;
            goto failed;
        }
 
        rv  = gpiod_line_request_output(led->line, led->name, !led->active);
        if( rv )
        {
            printf("request gpio output for %5s[%d] failed\n", led->name, led->gpio);
            rv = -4;
            goto failed;
        }
 
        //printf("request %5s led[%d] for gpio output okay\n", led->name, led->gpio);
    }
 
    return 0;
 
failed:
    term_led(ctx);
    return rv;
}
 
int turn_led(led_ctx_t *ctx, int which, int cmd)
{
    int            rv = 0;
    led_info_t    *led;
 
    if( !ctx || which<0 || which>=ctx->count )
    {
        printf("Invalid input arguments\n");
        return -1;
    }
 
    led = &ctx->leds[which];
 
    if( OFF == cmd )
    {
        gpiod_line_set_value(led->line, !led->active);
    }
    else
    {
        gpiod_line_set_value(led->line, led->active);
    }
 
    return 0;
}
 
static inline void msleep(unsigned long ms)
{
    struct timespec cSleep;
    unsigned long ulTmp;
 
    cSleep.tv_sec = ms / 1000;
    if (cSleep.tv_sec == 0)
    {
        ulTmp = ms * 10000;
        cSleep.tv_nsec = ulTmp * 100;
    }
    else
    {
        cSleep.tv_nsec = 0;
    }
 
    nanosleep(&cSleep, 0);
 
    return ;
}