mirror of
https://github.com/mfulz/qmk_firmware.git
synced 2025-06-01 12:41:16 +02:00
12 lines
159 B
C
12 lines
159 B
C
#ifndef KEYBOARD_H
|
|
#define KEYBOARD_H
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
void keyboard_init(void);
|
|
void keyboard_proc(void);
|
|
void keyboard_set_leds(uint8_t leds);
|
|
|
|
#endif
|