diff options
author | haierwangwei2005 <69899561+haierwangwei2005@users.noreply.github.com> | 2020-12-07 01:37:32 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-06 09:37:32 -0800 |
commit | f1b082320eb5cb5430ce4bcb536a56d9227e2e8a (patch) | |
tree | ca08af3c7d78ddace9df96b2fd71735462bd2266 /keyboards/latin47ble/latin47ble.h | |
parent | 8d6ad23b096ed2fc4d8fd0e6781fca30b87b343f (diff) |
[Keyboard] Latin47ble bluetooth keyboard (#11023)
* Create rules.mk
* Create glcdfonr.c
* Create keymap.c
* Create keymap.c
* Create rules.mk
* Add files via upload
* Update readme.md
* Update readme.md
* Update readme.md
* Update config.h
* Update 10bleoledhub.h
* Update 10bleoledhub.c
* Update info.json
* Update keymap.c
* Update keymap.c
* Rename glcdfonr.c to glcdfont.c
* Update config.h
* Update config.h
* Update config.h
* Update rules.mk
* Update 10bleoledhub.c
* Update 10bleoledhub.h
* Update info.json
* Update config.h
* Update rules.mk
* Update keymap.c
* Update keymap.c
* Update glcdfont.c
* Update keyboards/10bleoledhub/rules.mk
* Update keyboards/10bleoledhub/keymaps/via/keymap.c
* Update keyboards/10bleoledhub/keymaps/default/keymap.c
* Update keyboards/10bleoledhub/config.h
* Update keyboards/10bleoledhub/config.h
* Update keyboards/10bleoledhub/10bleoledhub.h
* Create readme.md
* Create rules.mk
* Create latin47ble.h
* Create latin47ble.c
* Create info.json
* Create config.h
* Create keymap.c
* Create rules.mk
* Create keymap.c
* Update keymap.c
* Update keyboards/latin47ble/keymaps/default/keymap.c
* Update keymap.c
* Update keyboards/latin47ble/keymaps/via/keymap.c
* Update keyboards/latin47ble/rules.mk
* Update keyboards/latin47ble/rules.mk
* Update keyboards/latin47ble/rules.mk
* Update latin47ble.h
* Update latin47ble.c
* Update latin47ble.h
* Update latin47ble.c
* Update keymap.c
* Update keymap.c
* Update config.h
* Update keyboards/latin47ble/config.h
* Update keyboards/latin47ble/config.h
* Update keyboards/latin47ble/config.h
* Update keyboards/latin47ble/config.h
* Update keyboards/latin47ble/keymaps/via/keymap.c
* Update keyboards/latin47ble/rules.mk
* Delete info.json
* Update readme.md
* Update keymap.c
* Update keymap.c
* Update keyboards/latin47ble/config.h
* Update keyboards/latin47ble/config.h
* Update keyboards/latin47ble/keymaps/default/keymap.c
* Update keyboards/latin47ble/latin47ble.c
* Update keyboards/latin47ble/latin47ble.h
* Update keyboards/latin47ble/keymaps/via/keymap.c
* Update keymap.c
* Update keymap.c
* Update latin47ble.h
* Update keymap.c
* Update keymap.c
* Update keymap.c
* Update keymap.c
* Update keyboards/latin47ble/keymaps/default/keymap.c
* Update keyboards/latin47ble/keymaps/default/keymap.c
* Update keyboards/latin47ble/latin47ble.h
* Update keyboards/latin47ble/keymaps/default/keymap.c
* Update keyboards/latin47ble/keymaps/via/keymap.c
* Update keyboards/latin47ble/rules.mk
Diffstat (limited to 'keyboards/latin47ble/latin47ble.h')
-rw-r--r-- | keyboards/latin47ble/latin47ble.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/keyboards/latin47ble/latin47ble.h b/keyboards/latin47ble/latin47ble.h new file mode 100644 index 0000000000..87ecaad658 --- /dev/null +++ b/keyboards/latin47ble/latin47ble.h @@ -0,0 +1,30 @@ + /* Copyright 2020 haierwangwei2005 + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ +#pragma once + +#include "quantum.h" + +#define LAYOUT_planck_mit( \ + K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K10, K11, \ + K12, K13, K14, K15, K16, K17, K18, K19, K20, K21, K22, K23, \ + K24, K25, K26, K27, K28, K29, K30, K31, K32, K33, K34, K35, \ + K36, K37, K38, K39, K40, K41, K42, K43, K44, K45, K46 \ +) { \ + { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K10, K11}, \ + { K12, K13, K14, K15, K16, K17, K18, K19, K20, K21, K22, K23}, \ + { K24, K25, K26, K27, K28, K29, K30, K31, K32, K33, K34, K35}, \ + { K36, K37, K38, K39, K40, K41, K42, K43, K44, K45, K46 } \ +} |