summary refs log tree commit diff
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2020-06-13 18:51:08 +0000
committerQMK Bot <hello@qmk.fm>2020-06-13 18:51:08 +0000
commitf68abbf6c8668d68e5eab0be9c537fe1ca5fa79f (patch)
tree97a1e7d4e06ffeaa7eb8465444d2a26d67c7746f
parent897c4cd1753cb831f8ca74b6d6feaeecd20fd869 (diff)
format code according to conventions [skip ci]
-rw-r--r--keyboards/yncognito/batpad/batpad.c70
-rw-r--r--keyboards/yncognito/batpad/batpad.h58
-rw-r--r--keyboards/yncognito/batpad/config.h120
-rw-r--r--keyboards/yncognito/batpad/info.json46
-rw-r--r--keyboards/yncognito/batpad/keymaps/default/keymap.c68
-rw-r--r--keyboards/yncognito/batpad/keymaps/via/keymap.c72
-rw-r--r--keyboards/yncognito/batpad/rules.mk70
7 files changed, 252 insertions, 252 deletions
diff --git a/keyboards/yncognito/batpad/batpad.c b/keyboards/yncognito/batpad/batpad.c
index d7292533fb..caafd57278 100644
--- a/keyboards/yncognito/batpad/batpad.c
+++ b/keyboards/yncognito/batpad/batpad.c
@@ -1,35 +1,35 @@
-/* Copyright 2020 Yncognito

- *

- * 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/>.

- */

-#include "batpad.h"

-

-

-#ifdef RGB_MATRIX_ENABLE

-led_config_t g_led_config ={

-    {

-        {4  ,5  ,6  ,7  },

-        {0  ,1  ,2  ,3  }

-	},

-	{

-        {0,0},{75,0},{145,0},{224,0},

-        {0,64},{75,64},{145,64},{224,64}

-    },

-    {

-        0x04,0x04,0x04,0x04,

-        0x04,0x04,0x04,0x04

-    }

-};

-

-#endif

+/* Copyright 2020 Yncognito
+ *
+ * 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/>.
+ */
+#include "batpad.h"
+
+
+#ifdef RGB_MATRIX_ENABLE
+led_config_t g_led_config ={
+    {
+        {4  ,5  ,6  ,7  },
+        {0  ,1  ,2  ,3  }
+	},
+	{
+        {0,0},{75,0},{145,0},{224,0},
+        {0,64},{75,64},{145,64},{224,64}
+    },
+    {
+        0x04,0x04,0x04,0x04,
+        0x04,0x04,0x04,0x04
+    }
+};
+
+#endif
diff --git a/keyboards/yncognito/batpad/batpad.h b/keyboards/yncognito/batpad/batpad.h
index c7c9c3595b..1cc79edf81 100644
--- a/keyboards/yncognito/batpad/batpad.h
+++ b/keyboards/yncognito/batpad/batpad.h
@@ -1,29 +1,29 @@
-/* Copyright 2020 Yncognito

- *

- * 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_ortho_2x4( \

-    K00, K01, K02, K03,   \

-    K10, K11, K12, K13    \

-) { \

-    { K00,   K01,   K02,   K03   }, \

-    { K10,   K11,   K12,   K13   }, \

-}

-

-// generated by KBFirmware JSON to QMK Parser

-// https://noroadsleft.github.io/kbf_qmk_converter/

+/* Copyright 2020 Yncognito
+ *
+ * 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_ortho_2x4( \
+    K00, K01, K02, K03,   \
+    K10, K11, K12, K13    \
+) { \
+    { K00,   K01,   K02,   K03   }, \
+    { K10,   K11,   K12,   K13   }, \
+}
+
+// generated by KBFirmware JSON to QMK Parser
+// https://noroadsleft.github.io/kbf_qmk_converter/
diff --git a/keyboards/yncognito/batpad/config.h b/keyboards/yncognito/batpad/config.h
index 31dab82dc5..379fc886d7 100644
--- a/keyboards/yncognito/batpad/config.h
+++ b/keyboards/yncognito/batpad/config.h
@@ -1,60 +1,60 @@
-/*

-Copyright 2020 Yncognito

-

-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 "config_common.h"

-

-/* USB Device descriptor parameter */

-#define VENDOR_ID       0x7979

-#define PRODUCT_ID      0x6602

-#define DEVICE_VER      0x0001

-#define MANUFACTURER    Yncognito

-#define PRODUCT         Batpad

-#define DESCRIPTION     A bat with 8 keys

-

-/* key matrix size */

-#define MATRIX_ROWS 2

-#define MATRIX_COLS 4

-

-/*

- * Keyboard Matrix Assignments

- *

- * Change this to how you wired your keyboard

- * COLS: AVR pins used for columns, left to right

- * ROWS: AVR pins used for rows, top to bottom

- * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)

- *                  ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)

- *

- */

-#define MATRIX_ROW_PINS { F4, C7 }

-#define MATRIX_COL_PINS { F1, F0, D5, D3 }

-

-#define DIODE_DIRECTION COL2ROW

-

-#define RGB_DI_PIN B5

-#define DRIVER_LED_TOTAL 8

-#define RGB_MATRIX_KEYPRESSES 

-#define RGB_MATRIX_KEYRELEASES 

-#define RGB_MATRIX_FRAMEBUFFER_EFFECTS

-#define RGB_DISABLE_AFTER_TIMEOUT 0 

-#define RGB_DISABLE_WHEN_USB_SUSPENDED false 

-#define RGB_MATRIX_LED_FLUSH_LIMIT 16 

-#define RGB_MATRIX_MAXIMUM_BRIGHTNESS 255 

-#define RGB_MATRIX_STARTUP_MODE RGB_MATRIX_CYCLE_ALL

-

-        

+/*
+Copyright 2020 Yncognito
+
+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 "config_common.h"
+
+/* USB Device descriptor parameter */
+#define VENDOR_ID       0x7979
+#define PRODUCT_ID      0x6602
+#define DEVICE_VER      0x0001
+#define MANUFACTURER    Yncognito
+#define PRODUCT         Batpad
+#define DESCRIPTION     A bat with 8 keys
+
+/* key matrix size */
+#define MATRIX_ROWS 2
+#define MATRIX_COLS 4
+
+/*
+ * Keyboard Matrix Assignments
+ *
+ * Change this to how you wired your keyboard
+ * COLS: AVR pins used for columns, left to right
+ * ROWS: AVR pins used for rows, top to bottom
+ * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
+ *                  ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
+ *
+ */
+#define MATRIX_ROW_PINS { F4, C7 }
+#define MATRIX_COL_PINS { F1, F0, D5, D3 }
+
+#define DIODE_DIRECTION COL2ROW
+
+#define RGB_DI_PIN B5
+#define DRIVER_LED_TOTAL 8
+#define RGB_MATRIX_KEYPRESSES 
+#define RGB_MATRIX_KEYRELEASES 
+#define RGB_MATRIX_FRAMEBUFFER_EFFECTS
+#define RGB_DISABLE_AFTER_TIMEOUT 0 
+#define RGB_DISABLE_WHEN_USB_SUSPENDED false 
+#define RGB_MATRIX_LED_FLUSH_LIMIT 16 
+#define RGB_MATRIX_MAXIMUM_BRIGHTNESS 255 
+#define RGB_MATRIX_STARTUP_MODE RGB_MATRIX_CYCLE_ALL
+
+        
diff --git a/keyboards/yncognito/batpad/info.json b/keyboards/yncognito/batpad/info.json
index 7a0c8173a8..2c0fd0d2eb 100644
--- a/keyboards/yncognito/batpad/info.json
+++ b/keyboards/yncognito/batpad/info.json
@@ -1,23 +1,23 @@
-{

-    "keyboard_name": "batpad",

-    "url": "",

-    "maintainer": "qmk",

-    "width": 4,

-    "height": 2,

-    "layouts": {

-        "LAYOUT_ortho_2x4": {

-            "key_count": 8,

-            "layout": [

-                {"label":"K00 (F4,F1)", "x":0, "y":0},

-                {"label":"K01 (F4,F0)", "x":1, "y":0},

-                {"label":"K02 (F4,D5)", "x":2, "y":0},

-                {"label":"K03 (F4,D3)", "x":3, "y":0},

-                {"label":"K10 (C7,F1)", "x":0, "y":1},

-                {"label":"K11 (C7,F0)", "x":1, "y":1},

-                {"label":"K12 (C7,D5)", "x":2, "y":1},

-                {"label":"K13 (C7,D3)", "x":3, "y":1}

-            ]

-        }

-    }

-    ,"meta": "https://noroadsleft.github.io/kbf_qmk_converter/"

-}

+{
+    "keyboard_name": "batpad",
+    "url": "",
+    "maintainer": "qmk",
+    "width": 4,
+    "height": 2,
+    "layouts": {
+        "LAYOUT_ortho_2x4": {
+            "key_count": 8,
+            "layout": [
+                {"label":"K00 (F4,F1)", "x":0, "y":0},
+                {"label":"K01 (F4,F0)", "x":1, "y":0},
+                {"label":"K02 (F4,D5)", "x":2, "y":0},
+                {"label":"K03 (F4,D3)", "x":3, "y":0},
+                {"label":"K10 (C7,F1)", "x":0, "y":1},
+                {"label":"K11 (C7,F0)", "x":1, "y":1},
+                {"label":"K12 (C7,D5)", "x":2, "y":1},
+                {"label":"K13 (C7,D3)", "x":3, "y":1}
+            ]
+        }
+    }
+    ,"meta": "https://noroadsleft.github.io/kbf_qmk_converter/"
+}
diff --git a/keyboards/yncognito/batpad/keymaps/default/keymap.c b/keyboards/yncognito/batpad/keymaps/default/keymap.c
index 8b8809c9c6..6cf40a182e 100644
--- a/keyboards/yncognito/batpad/keymaps/default/keymap.c
+++ b/keyboards/yncognito/batpad/keymaps/default/keymap.c
@@ -1,34 +1,34 @@
-/* Copyright 2020 Yncognito

- *

- * 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/>.

- */

-#include QMK_KEYBOARD_H

-

-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {

-    [0] = LAYOUT_ortho_2x4(

-

-        KC_Q,    KC_W,    KC_E,    KC_R,

-        KC_LGUI, KC_SPC,  RGB_TOG, RGB_MOD

-    ),

-    [1] = LAYOUT_ortho_2x4(

-        KC_Q,    KC_W,    KC_E,    KC_R,

-        KC_LGUI, KC_SPC,  RGB_TOG, RGB_MOD

-    ),

-    [2] = LAYOUT_ortho_2x4(

-        KC_Q,    KC_W,    KC_E,    KC_R,

-        KC_LGUI, KC_SPC,  RGB_TOG, RGB_MOD

-    ),

-

-

-};

+/* Copyright 2020 Yncognito
+ *
+ * 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/>.
+ */
+#include QMK_KEYBOARD_H
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+    [0] = LAYOUT_ortho_2x4(
+
+        KC_Q,    KC_W,    KC_E,    KC_R,
+        KC_LGUI, KC_SPC,  RGB_TOG, RGB_MOD
+    ),
+    [1] = LAYOUT_ortho_2x4(
+        KC_Q,    KC_W,    KC_E,    KC_R,
+        KC_LGUI, KC_SPC,  RGB_TOG, RGB_MOD
+    ),
+    [2] = LAYOUT_ortho_2x4(
+        KC_Q,    KC_W,    KC_E,    KC_R,
+        KC_LGUI, KC_SPC,  RGB_TOG, RGB_MOD
+    ),
+
+
+};
diff --git a/keyboards/yncognito/batpad/keymaps/via/keymap.c b/keyboards/yncognito/batpad/keymaps/via/keymap.c
index 1d109624ef..6e02a71934 100644
--- a/keyboards/yncognito/batpad/keymaps/via/keymap.c
+++ b/keyboards/yncognito/batpad/keymaps/via/keymap.c
@@ -1,36 +1,36 @@
-/* Copyright 2020 Yncognito

- *

- * 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/>.

- */

-#include QMK_KEYBOARD_H

-

-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {

-    [0] = LAYOUT_ortho_2x4(

-        KC_Q,    KC_W,    KC_E,    KC_R,

-        KC_LGUI, KC_SPC,  RGB_TOG, RGB_MOD

-    ),

-    [1] = LAYOUT_ortho_2x4(

-        KC_Q,    KC_W,    KC_E,    KC_R,

-        KC_LGUI, KC_SPC,  RGB_TOG, RGB_MOD

-    ),

-    [2] = LAYOUT_ortho_2x4(

-        KC_Q,    KC_W,    KC_E,    KC_R,

-        KC_LGUI, KC_SPC,  RGB_TOG, RGB_MOD

-    ),

-    [3] = LAYOUT_ortho_2x4(

-        _______, _______, _______, _______,

-        _______, _______, _______, _______

-    ),

-

-};

+/* Copyright 2020 Yncognito
+ *
+ * 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/>.
+ */
+#include QMK_KEYBOARD_H
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+    [0] = LAYOUT_ortho_2x4(
+        KC_Q,    KC_W,    KC_E,    KC_R,
+        KC_LGUI, KC_SPC,  RGB_TOG, RGB_MOD
+    ),
+    [1] = LAYOUT_ortho_2x4(
+        KC_Q,    KC_W,    KC_E,    KC_R,
+        KC_LGUI, KC_SPC,  RGB_TOG, RGB_MOD
+    ),
+    [2] = LAYOUT_ortho_2x4(
+        KC_Q,    KC_W,    KC_E,    KC_R,
+        KC_LGUI, KC_SPC,  RGB_TOG, RGB_MOD
+    ),
+    [3] = LAYOUT_ortho_2x4(
+        _______, _______, _______, _______,
+        _______, _______, _______, _______
+    ),
+
+};
diff --git a/keyboards/yncognito/batpad/rules.mk b/keyboards/yncognito/batpad/rules.mk
index dabad7e1e8..71cf8ef3e9 100644
--- a/keyboards/yncognito/batpad/rules.mk
+++ b/keyboards/yncognito/batpad/rules.mk
@@ -1,35 +1,35 @@
-# MCU name

-MCU = atmega32u4

-

-# Bootloader selection

-#   Teensy       halfkay

-#   Pro Micro    caterina

-#   Atmel DFU    atmel-dfu

-#   LUFA DFU     lufa-dfu

-#   QMK DFU      qmk-dfu

-#   ATmega32A    bootloadHID

-#   ATmega328P   USBasp

-BOOTLOADER = atmel-dfu

-

-# Build Options

-#   change yes to no to disable

-#

-BOOTMAGIC_ENABLE = lite      # Virtual DIP switch configuration

-MOUSEKEY_ENABLE = yes        # Mouse keys

-EXTRAKEY_ENABLE = yes        # Audio control and System control

-CONSOLE_ENABLE = no         # Console for debug

-COMMAND_ENABLE = no         # Commands for debug and configuration

-# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE

-SLEEP_LED_ENABLE = no        # Breathing sleep LED during USB suspend

-# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work

-NKRO_ENABLE = yes             # USB Nkey Rollover

-BACKLIGHT_ENABLE = no        # Enable keyboard backlight functionality

-RGB_MATRIX_ENABLE = WS2812       

-MIDI_ENABLE = no             # MIDI support

-UNICODE_ENABLE = no          # Unicode

-BLUETOOTH_ENABLE = no        # Enable Bluetooth with the Adafruit EZ-Key HID

-AUDIO_ENABLE = no            # Audio output on port C6

-FAUXCLICKY_ENABLE = no       # Use buzzer to emulate clicky switches

-

-# generated by KBFirmware JSON to QMK Parser

-# https://noroadsleft.github.io/kbf_qmk_converter/

+# MCU name
+MCU = atmega32u4
+
+# Bootloader selection
+#   Teensy       halfkay
+#   Pro Micro    caterina
+#   Atmel DFU    atmel-dfu
+#   LUFA DFU     lufa-dfu
+#   QMK DFU      qmk-dfu
+#   ATmega32A    bootloadHID
+#   ATmega328P   USBasp
+BOOTLOADER = atmel-dfu
+
+# Build Options
+#   change yes to no to disable
+#
+BOOTMAGIC_ENABLE = lite      # Virtual DIP switch configuration
+MOUSEKEY_ENABLE = yes        # Mouse keys
+EXTRAKEY_ENABLE = yes        # Audio control and System control
+CONSOLE_ENABLE = no         # Console for debug
+COMMAND_ENABLE = no         # Commands for debug and configuration
+# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
+SLEEP_LED_ENABLE = no        # Breathing sleep LED during USB suspend
+# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
+NKRO_ENABLE = yes             # USB Nkey Rollover
+BACKLIGHT_ENABLE = no        # Enable keyboard backlight functionality
+RGB_MATRIX_ENABLE = WS2812       
+MIDI_ENABLE = no             # MIDI support
+UNICODE_ENABLE = no          # Unicode
+BLUETOOTH_ENABLE = no        # Enable Bluetooth with the Adafruit EZ-Key HID
+AUDIO_ENABLE = no            # Audio output on port C6
+FAUXCLICKY_ENABLE = no       # Use buzzer to emulate clicky switches
+
+# generated by KBFirmware JSON to QMK Parser
+# https://noroadsleft.github.io/kbf_qmk_converter/