Brick Groove Machine 0.9.3
Firmware embarqué pour contrôleur/synthé Brick
 
Chargement...
Recherche...
Aucune correspondance
kbd_input_mapper.h
Aller à la documentation de ce fichier.
1
18#ifndef BRICK_UI_KBD_INPUT_MAPPER_H
19#define BRICK_UI_KBD_INPUT_MAPPER_H
20
21#include <stdint.h>
22#include <stdbool.h>
23
24#ifdef __cplusplus
25extern "C" {
26#endif
27
28void kbd_input_mapper_init(bool omnichord_state);
30void kbd_input_mapper_process(uint8_t seq_index, bool pressed);
31
32#ifdef __cplusplus
33}
34#endif
35
36#endif /* BRICK_UI_KBD_INPUT_MAPPER_H */
void kbd_input_mapper_set_omnichord_state(bool enabled)
Definition kbd_input_mapper.c:13
void kbd_input_mapper_process(uint8_t seq_index, bool pressed)
Definition kbd_input_mapper.c:15
void kbd_input_mapper_init(bool omnichord_state)
Definition kbd_input_mapper.c:12