1
0
This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
tmk_keyboard_custom/keyboard.h

12 lines
159 B
C
Raw Normal View History

2011-02-08 15:03:58 +00:00
#ifndef KEYBOARD_H
#define KEYBOARD_H
2011-02-12 15:15:51 +00:00
#include <stdint.h>
2011-02-08 15:03:58 +00:00
2011-02-10 06:51:30 +00:00
void keyboard_init(void);
void keyboard_proc(void);
2011-02-12 15:15:51 +00:00
void keyboard_set_leds(uint8_t leds);
2011-02-08 15:03:58 +00:00
#endif