forked from forks/qmk_firmware
b0805e38b9
* added ATOM47 (Vortex Core QMK powered PCB) * fixed broken\unfinished comment block * moved Layer template to default template. * moved Layer template to default template and removed template from the keymap.c file. * Added LEdiodes config * created readme.md contains an image of 60% board(LEdiodes). * updated readme.md with images added images of the PCB and some feature details from https://geekhack.org/index.php?topic=93447.msg2545221#msg2545221 * removed excess words. * followed the readme template to a T. * formatting fix : added a return.
26 lines
748 B
C
26 lines
748 B
C
#ifndef ATOM47_H
|
|
#define ATOM47_H
|
|
|
|
#include "quantum.h"
|
|
|
|
// readability
|
|
#define XXX KC_NO
|
|
|
|
#define KEYMAP_ANSI( \
|
|
k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, \
|
|
k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1c, \
|
|
k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2c, \
|
|
k30, k31, k32, k33, k34, k36, k38, k39, k3a, k3c \
|
|
) \
|
|
{ \
|
|
{k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c}, \
|
|
{k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, XXX, k1c}, \
|
|
{k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, XXX, k2c}, \
|
|
{k30, k31, k32, k33, k34, XXX, k36, XXX, k38, k39, k3a, XXX, k3c} \
|
|
}
|
|
|
|
void matrix_init_user(void);
|
|
void matrix_scan_user(void);
|
|
|
|
#endif
|