-
Notifications
You must be signed in to change notification settings - Fork 571
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9ffe9f6
commit af04c94
Showing
5 changed files
with
159 additions
and
0 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 +1,2 @@ | ||
tmp/ | ||
.idea |
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
39 changes: 39 additions & 0 deletions
39
qmk_firmware/keyboards/keyball/keyball39/keymaps/myapp/config.h
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
This is the c configuration file for the keymap | ||
Copyright 2022 @Yowkees | ||
Copyright 2022 MURAOKA Taro (aka KoRoN, @kaoriya) | ||
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 | ||
|
||
#ifdef RGBLIGHT_ENABLE | ||
# define RGBLIGHT_EFFECT_BREATHING | ||
# define RGBLIGHT_EFFECT_RAINBOW_MOOD | ||
# define RGBLIGHT_EFFECT_RAINBOW_SWIRL | ||
# define RGBLIGHT_EFFECT_SNAKE | ||
# define RGBLIGHT_EFFECT_KNIGHT | ||
# define RGBLIGHT_EFFECT_CHRISTMAS | ||
# define RGBLIGHT_EFFECT_STATIC_GRADIENT | ||
# define RGBLIGHT_EFFECT_RGB_TEST | ||
# define RGBLIGHT_EFFECT_ALTERNATING | ||
# define RGBLIGHT_EFFECT_TWINKLE | ||
#endif | ||
|
||
#define TAP_CODE_DELAY 5 | ||
|
||
#define POINTING_DEVICE_AUTO_MOUSE_ENABLE | ||
#define AUTO_MOUSE_DEFAULT_LAYER 1 |
94 changes: 94 additions & 0 deletions
94
qmk_firmware/keyboards/keyball/keyball39/keymaps/myapp/keymap.c
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 |
---|---|---|
@@ -0,0 +1,94 @@ | ||
/* | ||
Copyright 2022 @Yowkees | ||
Copyright 2022 MURAOKA Taro (aka KoRoN, @kaoriya) | ||
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 | ||
|
||
#include "quantum.h" | ||
|
||
// clang-format off | ||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
// keymap for default | ||
[0] = LAYOUT_universal( | ||
KC_Q , KC_W , KC_E , KC_R , KC_T , KC_Y , KC_U , KC_I , KC_O , KC_P , | ||
KC_A , KC_S , KC_D , KC_F , KC_G , KC_H , KC_J , KC_K , KC_L , KC_MINS , | ||
KC_Z , KC_X , KC_C , KC_V , KC_B , KC_N , KC_M , KC_COMM , KC_DOT , KC_SLSH , | ||
KC_LCTL , KC_LGUI , KC_LALT ,LSFT_T(KC_LNG2),LT(1,KC_SPC),LT(3,KC_LNG1),KC_BSPC,LT(2,KC_ENT),LSFT_T(KC_LNG2),KC_RALT,KC_RGUI, KC_RSFT | ||
), | ||
|
||
[1] = LAYOUT_universal( | ||
KC_F1 , KC_F2 , KC_F3 , KC_F4 , KC_RBRC , KC_F6 , KC_F7 , KC_F8 , KC_F9 , KC_F10 , | ||
KC_F5 , KC_EXLM , S(KC_6) ,S(KC_INT3), S(KC_8) , S(KC_INT1), KC_BTN1 , KC_PGUP , KC_BTN2 , KC_SCLN , | ||
S(KC_EQL),S(KC_LBRC),S(KC_7) , S(KC_2) ,S(KC_RBRC), KC_LBRC , KC_DLR , KC_PGDN , KC_BTN3 , KC_F11 , | ||
KC_INT1 , KC_EQL , S(KC_3) , _______ , _______ , _______ , TO(2) , TO(0) , _______ , KC_RALT , KC_RGUI , KC_F12 | ||
), | ||
|
||
[2] = LAYOUT_universal( | ||
KC_TAB , KC_7 , KC_8 , KC_9 , KC_MINS , KC_NUHS , _______ , KC_BTN3 , _______ , KC_BSPC , | ||
S(KC_QUOT), KC_4 , KC_5 , KC_6 ,S(KC_SCLN), S(KC_9) , KC_BTN1 , KC_UP , KC_BTN2 , KC_QUOT , | ||
KC_SLSH , KC_1 , KC_2 , KC_3 ,S(KC_MINS), S(KC_NUHS), KC_LEFT , KC_DOWN , KC_RGHT , _______ , | ||
KC_ESC , KC_0 , KC_DOT , KC_DEL , KC_ENT , KC_BSPC , _______ , _______ , _______ , _______ , _______ , _______ | ||
), | ||
|
||
[3] = LAYOUT_universal( | ||
RGB_TOG , AML_TO , AML_I50 , AML_D50 , _______ , _______ , _______ , SSNP_HOR , SSNP_VRT , SSNP_FRE , | ||
RGB_MOD , RGB_HUI , RGB_SAI , RGB_VAI , SCRL_DVI , _______ , _______ , _______ , _______ , _______ , | ||
RGB_RMOD , RGB_HUD , RGB_SAD , RGB_VAD , SCRL_DVD , CPI_D1K , CPI_D100 , CPI_I100 , CPI_I1K , KBC_SAVE , | ||
QK_BOOT , KBC_RST , _______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ , KBC_RST , QK_BOOT | ||
), | ||
|
||
[4] = LAYOUT_universal( | ||
_______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ , | ||
_______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ , | ||
_______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ , | ||
_______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ | ||
), | ||
|
||
[5] = LAYOUT_universal( | ||
_______ , _______ , _______ , _______ , _______ , _______ , SCRL_DVI , CPI_I100 , _______ , RGB_TOG , | ||
_______ , _______ , _______ , _______ , _______ , SCRL_DVD , CPI_D100 , _______ , _______ , _______ , | ||
_______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ , | ||
_______ , _______ , _______ , _______ , _______ , _______ , _______ , KBC_RST , _______ , _______ , _______ , _______ | ||
), | ||
|
||
[6] = LAYOUT_universal( | ||
_______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ , | ||
KC_LALT , KC_LSFT , _______ ,KC_MS_BTN1, _______ , _______ ,KC_MS_BTN1,KC_MS_BTN3,KC_MS_BTN2, _______ , | ||
_______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ , | ||
_______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ , _______ | ||
) | ||
}; | ||
// clang-format on | ||
|
||
layer_state_t layer_state_set_user(layer_state_t state) { | ||
// Auto enable scroll mode when the highest layer is 3 | ||
// keyball_set_scroll_mode(get_highest_layer(state) == 3); | ||
// 自動スクロール有効化 | ||
keyball_set_scroll_mode(get_highest_layer(state) == 1 || get_highest_layer(state) == 3); | ||
return state; | ||
} | ||
|
||
#ifdef OLED_ENABLE | ||
|
||
# include "lib/oledkit/oledkit.h" | ||
|
||
void oledkit_render_info_user(void) { | ||
keyball_oled_render_keyinfo(); | ||
keyball_oled_render_ballinfo(); | ||
keyball_oled_render_layerinfo(); | ||
} | ||
#endif |
3 changes: 3 additions & 0 deletions
3
qmk_firmware/keyboards/keyball/keyball39/keymaps/myapp/rules.mk
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
RGBLIGHT_ENABLE = no | ||
|
||
OLED_ENABLE = yes |