-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmidi2gpiod.c
466 lines (377 loc) · 10.4 KB
/
midi2gpiod.c
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
/*
* MIDI2GPIOD
*
* This program watches for MIDI events from a specified ALSA Sequencer Client
* and converts Note-On and Note-Off messages to GPIO on/off signals using the
* libgpiod library.
*
* Upon startup, the program attemps to listen for MIDI events from a specified
* client, which defaults to the portspec `rtpmidi:0`. To handle cases when
* the `rtpmidi:0` client is not yet running, `midi2gpiod` continuously watches
* for new MIDI clients and ports being added to the system, and if the
* portspec `rtpmidi:0` is then available, it is attached to.
*
* The designated port is configurable on the command line.
*
* $ midi2gpiod -p midikbd:0
*
* McLaren Labs
* 2021
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
#include <getopt.h>
#include <sys/poll.h>
#include <gpiod.h>
#include <alsa/asoundlib.h>
/*
* Global Vars for program
*/
int verbose = 0;
/*
* Configuration for GPIO pins
*/
static char *chipname = "gpiochip0";
static int line1_num = 25;
static int line2_num = 26;
static int line3_num = 27;
struct gpiod_chip *chip;
struct gpiod_line *line1;
struct gpiod_line *line2;
struct gpiod_line *line3;
#ifndef GPIOD_CONSUMER
#define GPIOD_CONSUMER "midi2gpiod"
#endif
/*
* Configure the MIDI device to listen for. The portspec defaults to
* 'rtpmidi:0' - the client and port we attempt to listen to
*/
char *portspec = "rtpmidi:0";
/*
* When this program starts, it creates an element in the ALSA MIDI system called
* a `seq` (sequencer). The `client` is the integer that identifies this `seq`
* in the system. A `seq` can have multiple ports. We create one port, and its
* index will be zero.
*/
snd_seq_t *seq;
int seq_client;
int seq_port0;
/*
* These are the names we give our client and port. These are the names that
* appear if you run aconnect like this.
*
* $ aconnect -i -o -l
*
*/
char *sequencer_name = "midi2gpiod";
char *port_name = "midi2gpiod";
/*
* These are the configuration parameters for the type of seq we create.
*/
char *sequencer_type = "default";
int sequencer_streams = SND_SEQ_OPEN_DUPLEX;
int sequencer_mode = SND_SEQ_NONBLOCK;
/*
* These are the capabilities of the port we create. We want to be able
* to read and write other seqs.
*/
int port_caps = (SND_SEQ_PORT_CAP_READ | SND_SEQ_PORT_CAP_WRITE |
SND_SEQ_PORT_CAP_SUBS_READ | SND_SEQ_PORT_CAP_SUBS_WRITE);
int port_type = SND_SEQ_PORT_TYPE_MIDI_GENERIC;
void check_snd_err_fatal(const char *msg, int err) {
if (err < 0) {
fprintf(stderr, "%s: Alsa error (%s)", msg, snd_strerror(err));
exit(1);
}
}
void open_seq(void)
{
int err;
err = snd_seq_open(&seq, sequencer_type, sequencer_streams, sequencer_mode);
check_snd_err_fatal("snd_seq_open", err);
err = snd_seq_set_client_name(seq, sequencer_name);
check_snd_err_fatal("snd_seq_set_client_name", err);
// get the client id for this sequencer
seq_client = snd_seq_client_id(seq);
}
void create_port(void)
{
seq_port0 = snd_seq_create_simple_port(seq, port_name, port_caps, port_type);
check_snd_err_fatal("snd_seq_create_simple_port", seq_port0);
}
/*
* Attempt to connect from midi port specifed in 'portspec'.
*/
void connect_from_rtpmidi_port(void)
{
int err;
snd_seq_addr_t addr;
err = snd_seq_parse_address(seq, &addr, portspec);
if (err < 0) {
printf("Parsing portspec '%s' failed. Ignoring.\n", portspec);
printf("Alsa error (%s)\n", snd_strerror(err));
return;
}
err = snd_seq_connect_from(seq, seq_port0, addr.client, addr.port);
if (err < 0) {
printf("Connecting from '%s' failed. Ignoring.\n", portspec);
printf("Alsa error (%s)\n", snd_strerror(err));
return;
}
printf("Connection from '%s' succeeded\n", portspec);
}
void subscribe_to_system_events(void)
{
int err;
err = snd_seq_connect_from(seq, seq_port0, SND_SEQ_CLIENT_SYSTEM, SND_SEQ_PORT_SYSTEM_ANNOUNCE);
check_snd_err_fatal("snd_seq_connect_from (in subscribe)", err);
}
static void log_event(const snd_seq_event_t *ev)
{
printf("%3d:%-3d ", ev->source.client, ev->source.port);
switch (ev->type) {
case SND_SEQ_EVENT_NOTEON:
if (ev->data.note.velocity)
printf("Note on %2d, note %d, velocity %d\n",
ev->data.note.channel, ev->data.note.note, ev->data.note.velocity);
else
printf("Note off %2d, note %d\n",
ev->data.note.channel, ev->data.note.note);
break;
case SND_SEQ_EVENT_NOTEOFF:
printf("Note off %2d, note %d, velocity %d\n",
ev->data.note.channel, ev->data.note.note, ev->data.note.velocity);
break;
case SND_SEQ_EVENT_CLIENT_START:
printf("Client start client %d\n",
ev->data.addr.client);
break;
case SND_SEQ_EVENT_CLIENT_EXIT:
printf("Client exit client %d\n",
ev->data.addr.client);
break;
case SND_SEQ_EVENT_CLIENT_CHANGE:
printf("Client changed client %d\n",
ev->data.addr.client);
break;
case SND_SEQ_EVENT_PORT_START:
printf("Port start %d:%d\n",
ev->data.addr.client, ev->data.addr.port);
break;
case SND_SEQ_EVENT_PORT_EXIT:
printf("Port exit %d:%d\n",
ev->data.addr.client, ev->data.addr.port);
break;
case SND_SEQ_EVENT_PORT_CHANGE:
printf("Port changed %d:%d\n",
ev->data.addr.client, ev->data.addr.port);
break;
case SND_SEQ_EVENT_PORT_SUBSCRIBED:
printf("Port subscribed %d:%d -> %d:%d\n",
ev->data.connect.sender.client, ev->data.connect.sender.port,
ev->data.connect.dest.client, ev->data.connect.dest.port);
break;
case SND_SEQ_EVENT_PORT_UNSUBSCRIBED:
printf("Port unsubscribed %d:%d -> %d:%d\n",
ev->data.connect.sender.client, ev->data.connect.sender.port,
ev->data.connect.dest.client, ev->data.connect.dest.port);
break;
}
}
void handle_event_note_on(const snd_seq_event_t *ev)
{
int channel = ev->data.note.channel;
int note = ev->data.note.note;
int velocity = ev->data.note.velocity;
if (verbose)
printf("Handle note on:%d %d %d\n", channel, note, velocity);
if (note == 60) { // middle-C
gpiod_line_set_value(line1, 1);
}
if (note == 62) {
gpiod_line_set_value(line2, 1);
}
if (note == 64) {
gpiod_line_set_value(line3, 1);
}
}
void handle_event_note_off(const snd_seq_event_t *ev)
{
int channel = ev->data.note.channel;
int note = ev->data.note.note;
int velocity = ev->data.note.velocity;
if (verbose)
printf("Handle note on:%d %d %d\n", channel, note, velocity);
if (note == 60) {
gpiod_line_set_value(line1, 0);
}
if (note == 62) {
gpiod_line_set_value(line2, 0);
}
if (note == 64) {
gpiod_line_set_value(line3, 0);
}
}
void handle_event(const snd_seq_event_t *ev)
{
switch (ev->type) {
case SND_SEQ_EVENT_NOTEON:
handle_event_note_on(ev);
break;
case SND_SEQ_EVENT_NOTEOFF:
handle_event_note_off(ev);
break;
case SND_SEQ_EVENT_CLIENT_START:
connect_from_rtpmidi_port();
break;
case SND_SEQ_EVENT_PORT_START:
connect_from_rtpmidi_port();
break;
}
}
void help(const char *pgm)
{
printf("Usage: %s [-h] [-v] [-p portspec]\n", pgm);
printf("\n");
printf("Watch specified MIDI client and translate Note-On/Off to GPIO On/Off\n");
printf("\n");
printf("Options:\n");
printf(" -h, --help\t\tdisplay this message and exit\n");
printf(" -v, --verbose\t\tlog relevant MIDI messages\n");
printf(" -p, --portspec=client:port\t\twatch specified MIDI client and port\n");
return;
}
static int stop = 0;
static void sighandler(int sig)
{
fprintf(stderr, "SIGHANDLER\n");
stop = 1;
}
int gpio_setup()
{
int ret;
chip = gpiod_chip_open_by_name(chipname);
if (!chip) {
perror("Open chip failed\n");
goto end;
}
// Configure Line1
line1 = gpiod_chip_get_line(chip, line1_num);
if (!line1) {
perror("Get line1 failed\n");
goto close_chip;
}
ret = gpiod_line_request_output(line1, GPIOD_CONSUMER, 0);
if (ret < 0) {
perror("Request line1 as output failed\n");
goto release_line;
}
// Configure Line2
line2 = gpiod_chip_get_line(chip, line2_num);
if (!line2) {
perror("Get line2 failed\n");
goto close_chip;
}
ret = gpiod_line_request_output(line2, GPIOD_CONSUMER, 0);
if (ret < 0) {
perror("Request line2 as output failed\n");
goto release_line;
}
// Configure Line3
line3 = gpiod_chip_get_line(chip, line3_num);
if (!line3) {
perror("Get line3 failed\n");
goto close_chip;
}
ret = gpiod_line_request_output(line3, GPIOD_CONSUMER, 0);
if (ret < 0) {
perror("Request line3 as output failed\n");
goto release_line;
}
return 1;
release_line:
gpiod_line_release(line1);
gpiod_line_release(line2);
gpiod_line_release(line3);
close_chip:
gpiod_chip_close(chip);
end:
return 0;
}
int main(int argc, char *argv[])
{
static const char short_options[] = "hvp:";
static const struct option long_options[] =
{
{"help", 0, NULL, 'h'},
{"verbose", 0, NULL, 'v'},
{"port", 1, NULL, 'p'},
{ }
};
int c;
while ((c = getopt_long(argc, argv, short_options,
long_options, NULL)) != -1) {
switch (c) {
case 'h':
help(argv[0]);
return 0;
case 'v':
verbose = 1;
break;
case 'p':
portspec = strdup(optarg);
break;
default:
help(argv[0]);
return 1;
}
}
if (optind < argc) {
help(argv[0]);
return 1;
}
int err;
open_seq();
create_port();
subscribe_to_system_events();
connect_from_rtpmidi_port();
int gpio_ok = gpio_setup();
if (gpio_ok != 1) {
fprintf(stderr, "GPIO configuration failed\n");
exit(1);
}
// catch signal to exit when user types ^C
signal(SIGINT, sighandler);
signal(SIGTERM, sighandler);
// file descriptors for alsa seq
struct pollfd *pfds;
int npfds;
npfds = snd_seq_poll_descriptors_count(seq, POLLIN);
pfds = alloca(sizeof(*pfds) * npfds);
for (;;) {
snd_seq_poll_descriptors(seq, pfds, npfds, POLLIN);
if (poll(pfds, npfds, -1) < 0)
break;
do {
snd_seq_event_t *event;
err = snd_seq_event_input(seq, &event);
if (err < 0)
break;
if (event) {
if (verbose)
log_event(event);
handle_event(event);
}
} while (err > 0);
if (stop)
break;
}
release_line:
gpiod_line_release(line1);
gpiod_line_release(line2);
gpiod_line_release(line3);
close_chip:
gpiod_chip_close(chip);
}