2015-10-27 19:33:18 +01:00
|
|
|
#ifndef %KEYBOARD_UPPERCASE%_H
|
|
|
|
#define %KEYBOARD_UPPERCASE%_H
|
|
|
|
|
|
|
|
#include "matrix.h"
|
|
|
|
#include "keymap_common.h"
|
2016-04-30 04:19:40 +02:00
|
|
|
#ifdef BACKLIGHT_ENABLE
|
|
|
|
#include "backlight.h"
|
|
|
|
#endif
|
|
|
|
#include <avr/io.h>
|
2015-10-27 19:33:18 +01:00
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
// This a shortcut to help you visually see your layout.
|
|
|
|
// The following is an example using the Planck MIT layout
|
|
|
|
// The first section contains all of the arguements
|
|
|
|
// The second converts the arguments into a two-dimensional array
|
|
|
|
#define KEYMAP( \
|
2016-01-24 02:45:52 +01:00
|
|
|
k00, k01, k02, \
|
2016-03-04 16:53:58 +01:00
|
|
|
k10, k11 \
|
2015-10-27 19:33:18 +01:00
|
|
|
) \
|
|
|
|
{ \
|
2016-01-24 02:45:52 +01:00
|
|
|
{ k00, k01, k02 }, \
|
|
|
|
{ k10, KC_NO, k11 }, \
|
2016-03-28 16:13:37 +02:00
|
|
|
}
|
2015-10-27 19:33:18 +01:00
|
|
|
|
2016-03-10 17:28:34 +01:00
|
|
|
void matrix_init_user(void);
|
|
|
|
void matrix_scan_user(void);
|
2016-05-15 06:27:32 +02:00
|
|
|
bool process_action_user(keyrecord_t *record);
|
2016-03-23 02:39:05 +01:00
|
|
|
void led_set_user(uint8_t usb_led);
|
2015-10-27 19:33:18 +01:00
|
|
|
|
2016-03-28 16:13:37 +02:00
|
|
|
#endif
|