-
-
Notifications
You must be signed in to change notification settings - Fork 39.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
format code according to conventions [skip ci]
- Loading branch information
Showing
7 changed files
with
252 additions
and
252 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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/" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
), | ||
|
||
|
||
}; |
Oops, something went wrong.