Quellcode durchsuchen

[keyboard] Maypad: Add additional layout (#10643)

* add split plus layout

* update README

* rename splitPlus to split_plus

* Update keyboards/keyhive/maypad/rules.mk

Co-authored-by: Joel Challis <git@zvecr.com>

Co-authored-by: Joel Challis <git@zvecr.com>
Reid Sox-Harris vor 4 Jahren
Ursprung
Commit
21357b658a

+ 9 - 6
keyboards/keyhive/maypad/info.json

@@ -1,16 +1,19 @@
 {
-    "keyboard_name": "maypad", 
-    "url": "https://keyhive.xyz/shop/may-pad", 
-    "maintainer": "codybender", 
-    "width": 4, 
-    "height": 5, 
+    "keyboard_name": "maypad",
+    "url": "https://keyhive.xyz/shop/may-pad",
+    "maintainer": "codybender",
+    "width": 4,
+    "height": 5,
     "layouts": {
         "LAYOUT_numpad_5x4": {
             "layout": [{"label":"Num Lock", "x":0, "y":0}, {"label":"/", "x":1, "y":0}, {"label":"*", "x":2, "y":0}, {"label":"-", "x":3, "y":0}, {"label":"7", "x":0, "y":1}, {"label":"8", "x":1, "y":1}, {"label":"9", "x":2, "y":1}, {"label":"4", "x":0, "y":2}, {"label":"5", "x":1, "y":2}, {"label":"6", "x":2, "y":2}, {"label":"+", "x":3, "y":1, "h":2}, {"label":"1", "x":0, "y":3}, {"label":"2", "x":1, "y":3}, {"label":"3", "x":2, "y":3}, {"label":"0", "x":0, "y":4, "w":2}, {"label":".", "x":2, "y":4}, {"label":"Enter", "x":3, "y":3, "h":2}]
         },
+        "LAYOUT_numpad_5x4_split_plus": {
+            "layout": [{"label":"Num Lock", "x":0, "y":0}, {"label":"/", "x":1, "y":0}, {"label":"*", "x":2, "y":0}, {"label":"=", "x":3, "y":0}, {"label":"7", "x":0, "y":1}, {"label":"8", "x":1, "y":1}, {"label":"9", "x":2, "y":1}, {"label":"+", "x":3, "y":1}, {"label":"4", "x":0, "y":2}, {"label":"5", "x":1, "y":2}, {"label":"6", "x":2, "y":2}, {"label":"-", "x":3, "y":1}, {"label":"1", "x":0, "y":3}, {"label":"2", "x":1, "y":3}, {"label":"3", "x":2, "y":3}, {"label":"0", "x":0, "y":4, "w":2}, {"label":".", "x":2, "y":4}, {"label":"Enter", "x":3, "y":3, "h":2}]
+        },
         "LAYOUT_ortho_5x4": {
             "layout": [{"label":"Num Lock", "x":0, "y":0}, {"label":"/", "x":1, "y":0}, {"label":"*", "x":2, "y":0}, {"label":"-", "x":3, "y":0}, {"label":"7", "x":0, "y":1}, {"label":"8", "x":1, "y":1}, {"label":"9", "x":2, "y":1}, {"label":"+", "x":3, "y":1}, {"label":"4", "x":0, "y":2}, {"label":"5", "x":1, "y":2}, {"label":"6", "x":2, "y":2}, {"label":"+", "x":3, "y":2}, {"label":"1", "x":0, "y":3}, {"label":"2", "x":1, "y":3}, {"label":"3", "x":2, "y":3}, {"label":"Enter", "x":3, "y":3}, {"label":"0", "x":0, "y":4}, {"label":"00", "x":1, "y":4}, {"label":".", "x":2, "y":4}, {"label":"Enter", "x":3, "y":4}]
         }
-    
+
     }
 }

+ 14 - 0
keyboards/keyhive/maypad/maypad.h

@@ -46,6 +46,20 @@
     { KC_NO, k41, k42, k43   }   \
 }
 
+#define LAYOUT_numpad_5x4_split_plus( \
+        k00, k01, k02, k03, \
+        k10, k11, k12, k13, \
+        k20, k21, k22, k23, \
+        k30, k31, k32,      \
+             k41, k42, k43  \
+) { \
+    { k00,   k01, k02, k03   }, \
+    { k10,   k11, k12, k13   }, \
+    { k20,   k21, k22, k23   }, \
+    { k30,   k31, k32, KC_NO }, \
+    { KC_NO, k41, k42, k43   }  \
+}
+
 #define LAYOUT_ortho_5x4( \
     k00, k01, k02, k03, \
     k10, k11, k12, k13, \

+ 1 - 1
keyboards/keyhive/maypad/readme.md

@@ -10,4 +10,4 @@ Make example for this keyboard (after setting up your build environment):
 
     make keyhive/maypad:default
 
-See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
+See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).