forked from forks/qmk_firmware
194dc0984e
* [Keyboard] Kinesis + Pro Micro init - docs for DIY - custom matrix = lite - a near-factory dvorak mapping - optimized debouncing for lower latency * chore: reformatting * chore: update doc * chore: cleanups according to PR feedback * chore: PR feedback * fix: compile error * chore: add include * fix: LEDs hanging after USB disconnect * chore: enable QMK goodies by default * chore: use semantic write pin
30 lines
498 B
C
30 lines
498 B
C
#ifndef KINESIS_H
|
|
#define KINESIS_H
|
|
|
|
#ifdef KEYBOARD_kinesis_alvicstep
|
|
#include "alvicstep.h"
|
|
#endif
|
|
#ifdef KEYBOARD_kinesis_stapelberg
|
|
#include "stapelberg.h"
|
|
#endif
|
|
#ifdef KEYBOARD_kinesis_kint2pp
|
|
#include "kint2pp.h"
|
|
#endif
|
|
#ifdef KEYBOARD_kinesis_nguyenvietyen
|
|
#include "nguyenvietyen.h"
|
|
#endif
|
|
|
|
#include "quantum.h"
|
|
|
|
|
|
void all_led_off(void);
|
|
void all_led_on(void);
|
|
void num_lock_led_on(void);
|
|
void caps_lock_led_on(void);
|
|
void scroll_lock_led_on(void);
|
|
void keypad_led_on(void);
|
|
|
|
|
|
|
|
#endif
|