[Keyboard] Add Ixora keypad (#5931)
* added ixora files * upload ixora * update readme * Update keyboards/peiorisboards/ixora/ixora.h Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/peiorisboards/ixora/ixora.h Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/peiorisboards/ixora/ixora.h Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/peiorisboards/ixora/keymaps/default/keymap.c Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/peiorisboards/ixora/keymaps/default/keymap.c Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/peiorisboards/ixora/keymaps/wntrmln/keymap.c Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/peiorisboards/ixora/keymaps/wntrmln/keymap.c Co-Authored-By: fauxpark <fauxpark@gmail.com> * update files according to suggestions * removed unused code
This commit is contained in:
parent
0aece4ddab
commit
68501261c3
15 changed files with 2313 additions and 0 deletions
40
keyboards/peiorisboards/ixora/ixora.h
Normal file
40
keyboards/peiorisboards/ixora/ixora.h
Normal file
|
@ -0,0 +1,40 @@
|
|||
#pragma once
|
||||
|
||||
#define XXX KC_NO
|
||||
|
||||
#include "quantum.h"
|
||||
|
||||
// This a shortcut to help you visually see your layout.
|
||||
|
||||
#define LAYOUT_full( \
|
||||
K00, K01, K02, \
|
||||
K03, K04, K05 \
|
||||
) \
|
||||
{ \
|
||||
{ K00, K01, K02, K03, K04, K05 } \
|
||||
}
|
||||
|
||||
#define LAYOUT_blocker_right( \
|
||||
K00, K01, \
|
||||
K03, K04, K05 \
|
||||
) \
|
||||
{ \
|
||||
{ K00, K01, XXX, K03, K04, K05 } \
|
||||
}
|
||||
|
||||
#define LAYOUT_blocker_left( \
|
||||
K01, K02, \
|
||||
K03, K04, K05 \
|
||||
) \
|
||||
{ \
|
||||
{ XXX, K01, K02, K03, K04, K05 } \
|
||||
}
|
||||
|
||||
#define LAYOUT_arrows( \
|
||||
K01, \
|
||||
K03, K04, K05 \
|
||||
) \
|
||||
{ \
|
||||
{ XXX, K01, XXX, K03, K04, K05 } \
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue