My local repo of qmk firmware.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#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
|
|
|
|
#ifdef KEYBOARD_kinesis_kint36
|
|
|
|
#include "kint36.h"
|
|
|
|
#endif
|
|
|
|
#ifdef KEYBOARD_kinesis_kint41
|
|
|
|
#include "kint41.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
|