Skip to content

Commit

Permalink
csc027/keymap-updates (qmk#10250)
Browse files Browse the repository at this point in the history
  • Loading branch information
csc027 authored Oct 22, 2020
1 parent df75963 commit 5d03b69
Show file tree
Hide file tree
Showing 12 changed files with 241 additions and 74 deletions.
1 change: 0 additions & 1 deletion keyboards/keebio/iris/keymaps/csc027/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.

#pragma once

#define USE_I2C
#define EE_HANDS

#undef RGBLED_NUM
Expand Down
27 changes: 22 additions & 5 deletions keyboards/keebio/iris/keymaps/csc027/keymap.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
Copyright 2020 Constantine Chen @csc027
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 "csc027.h"

Expand Down Expand Up @@ -36,11 +53,11 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
_______, _______, _______, _______, _______, _______
),

[_GT] = LAYOUT_wrapper(
_______________________GIT_L1______________________, _______________________GIT_R1______________________,
_______________________GIT_L2______________________, _______________________GIT_R2______________________,
_______________________GIT_L3______________________, _______________________GIT_R3______________________,
_______________________GIT_L4______________________, _______, _______, _______________________GIT_R4______________________,
[_WT] = LAYOUT_wrapper(
________________WINDOWS_TERMINAL_L1________________, ________________WINDOWS_TERMINAL_R1________________,
________________WINDOWS_TERMINAL_L2________________, ________________WINDOWS_TERMINAL_R2________________,
________________WINDOWS_TERMINAL_L3________________, ________________WINDOWS_TERMINAL_R3________________,
________________WINDOWS_TERMINAL_L4________________, _______, _______, ________________WINDOWS_TERMINAL_R4________________,
_______, _______, _______, _______, _______, _______
),

Expand Down
27 changes: 22 additions & 5 deletions keyboards/planck/keymaps/csc027/keymap.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
Copyright 2020 Constantine Chen @csc027
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 "csc027.h"

Expand Down Expand Up @@ -32,11 +49,11 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
______________________MOUSE_L4_____________________, ______________________MOUSE_R4_____________________
),

[_GT] = LAYOUT_wrapper(
_______________________GIT_L1______________________, _______________________GIT_R1______________________,
_______________________GIT_L2______________________, _______________________GIT_R2______________________,
_______________________GIT_L3______________________, _______________________GIT_R3______________________,
_______________________GIT_L4______________________, _______________________GIT_R4______________________
[_WT] = LAYOUT_wrapper(
________________WINDOWS_TERMINAL_L1________________, ________________WINDOWS_TERMINAL_R1________________,
________________WINDOWS_TERMINAL_L2________________, ________________WINDOWS_TERMINAL_R2________________,
________________WINDOWS_TERMINAL_L3________________, ________________WINDOWS_TERMINAL_R3________________,
________________WINDOWS_TERMINAL_L4________________, ________________WINDOWS_TERMINAL_R4________________
),

[_CN] = LAYOUT_wrapper(
Expand Down
17 changes: 17 additions & 0 deletions users/csc027/csc027.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
Copyright 2020 Constantine Chen @csc027
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 "csc027.h"

// Declare the strings in PROGMEM using the convenience macro
Expand Down
19 changes: 18 additions & 1 deletion users/csc027/csc027.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
Copyright 2020 Constantine Chen @csc027
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"
Expand All @@ -22,7 +39,7 @@ enum custom_layers {
_RS, // Raise
_LW, // Lower
_MS, // Mouse
_GT, // Git
_WT, // Windows Terminal
_CN, // Convenience
_GG, // General Gaming
_CS // Counter-Strike: Global Offensive
Expand Down
17 changes: 17 additions & 0 deletions users/csc027/custom_audio.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
Copyright 2020 Constantine Chen @csc027
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 "csc027.h"
#include "custom_audio.h"

Expand Down
17 changes: 17 additions & 0 deletions users/csc027/custom_audio.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
Copyright 2020 Constantine Chen @csc027
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

#if defined(AUDIO_ENABLE)
Expand Down
17 changes: 17 additions & 0 deletions users/csc027/custom_rgb.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
Copyright 2020 Constantine Chen @csc027
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 "csc027.h"
#include "custom_rgb.h"

Expand Down
17 changes: 17 additions & 0 deletions users/csc027/custom_rgb.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
Copyright 2020 Constantine Chen @csc027
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

#if defined(RGBLIGHT_ENABLE)
Expand Down
Loading

0 comments on commit 5d03b69

Please sign in to comment.