aboutsummaryrefslogtreecommitdiff
path: root/keyboards/sck/osa/keymaps/ocm/keymap.c
diff options
context:
space:
mode:
authorJ.Flanagan <jrfhoutx@comcast.net>2019-10-05 12:44:55 -0500
committerDrashna Jaelre <drashna@live.com>2019-10-05 10:44:55 -0700
commit19b60c273ab63c250db748e5eead6baba88cd0d8 (patch)
tree72a0fa65515e4d25e099c3ae68250ed0a8e39184 /keyboards/sck/osa/keymaps/ocm/keymap.c
parentdbce3f648b342418f79de977068f2005d534cff7 (diff)
downloadqmk_firmware-19b60c273ab63c250db748e5eead6baba88cd0d8.tar.gz
qmk_firmware-19b60c273ab63c250db748e5eead6baba88cd0d8.zip
[Keyboard] Add OSA keyboard (#6849)
* initial commit restart of osa development * minor changes Minor changes mostly changing naming and comment out rgb modes * initial commit restart of osa development * minor changes Minor changes mostly changing naming and comment out rgb modes * more minor changes comment out some functions correct some spelling errors change some of the descriptive text * Minor Changes Minor changers per PR requests * Minor Changes Minor changes per PR suggestions * Major Changes Per PR suggestion from noroadsleft: - changed macro to LAYOUT_all in info.json, dualsplit/keymap.c and ocm/keymap.c, and osa.h - added osa.h macros for other layouts per suggestion and used suggested naming - changed naming of layout macros to correspond to macros and naming in default/keymap.c, dualsplit/keymap.c, ocm/keymap.c, splitbs/keymap.c, and splitrs/keymap.c - removed duplicate layers from all keymaps and edited per suggestions - compiled each keymap to check for and correct any potential errors. all compiled with no errors * Minor Change - fixed imgur image link in readme.md to be correct format * Minor Changes changes to macro layouts in osa.h changes to dualsplit/keymap.c - added arrows to layer 1 * Changes - Made changes to info.json to match osa.h - changes to osa.c enabling indicator LEDs - changed "dualsplit" directory name to "all" to match keymap naming in osa.h, info.json, and keymap.c - minor changes to all/keymap.c * Update keyboards/sck/osa/rules.mk Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/sck/osa/readme.md Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Changes to info.json - revert to info.json from version in b3b49c3 per requested changes
Diffstat (limited to 'keyboards/sck/osa/keymaps/ocm/keymap.c')
-rw-r--r--keyboards/sck/osa/keymaps/ocm/keymap.c123
1 files changed, 123 insertions, 0 deletions
diff --git a/keyboards/sck/osa/keymaps/ocm/keymap.c b/keyboards/sck/osa/keymaps/ocm/keymap.c
new file mode 100644
index 000000000..cd48b5729
--- /dev/null
+++ b/keyboards/sck/osa/keymaps/ocm/keymap.c
@@ -0,0 +1,123 @@
1/* Copyright 2019 jrfhoutx
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16#include QMK_KEYBOARD_H
17
18// Defines the keycodes used by our macros in process_record_user
19//enum custom_keycodes {
20// QMKBEST = SAFE_RANGE,
21// QMKURL
22//};
23
24
25const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
26 /* Keymap BASE: (Base Layer) Default Layer
27 * .----.,----------------------------------------------------------------------.
28 * | M1 ||Esc| 1 | 2| 3| 4| 5| 6| | 7| 8| 9| 0| -| =| ~ | \ |
29 * |----||----------------------------------------------------------------------|
30 * | M2 ||Tab | Q| W| E| R| T| | Y| U| I| O| P| [ | ] |BkSpc|
31 * |----||----------------------------------------------------------------------|
32 * | M3 ||Ctrl | A| S| D| F| G| | H| J| K| L| ;| '|Return |
33 * `----'|----------------------------------------------------------------------|
34 * |Shift | Z| X| C| V| B| | B| N| M| ,| .| /|Shift | Fn |
35 * |----------------------------------------------------------------------|
36 * |CAPS| | Alt | Space | Fn | | Space | Alt | | Ctrl|
37 * `----------------------------------------------------------------------'
38 */
39[0] = LAYOUT_all( /* OSA Base */
40 KC_DEL, KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_GRV, KC_BSLS,
41 KC_PGUP, KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSPC,
42 KC_PGDN, KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT,
43 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_HOME,
44 KC_LCTL, KC_LALT, KC_SPC, MO(1), KC_SPC, KC_RALT, KC_RCTL
45 ),
46/* Keymap BASE: (Base Layer) Default Layer
47 * .----.,----------------------------------------------------------------------.
48 * | M1 ||Esc| 1 | 2| 3| 4| 5| 6| | 7| 8| 9| 0| -| =| ~ | \ |
49 * |----||----------------------------------------------------------------------|
50 * | M2 ||Tab | Q| W| E| R| T| | Y| U| I| O| P| [ | ] |BkSpc|
51 * |----||----------------------------------------------------------------------|
52 * | M3 ||Ctrl | A| S| D| F| G| | H| J| K| L| ;| '|Return |
53 * `----'|----------------------------------------------------------------------|
54 * |Shift | Z| X| C| V| B| | B| N| M| ,| .| /|Shift | Fn |
55 * |----------------------------------------------------------------------|
56 * |CAPS| | Alt | Space | Fn | | Space | Alt | | Ctrl|
57 * `----------------------------------------------------------------------'
58 */
59[1] = LAYOUT_all( /* OSA Layer 1 */
60 KC_DEL, KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_GRV, KC_BSLS,
61 KC_PGUP, KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSPC,
62 KC_PGDN, KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT,
63 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_HOME,
64 KC_LCTL, KC_LALT, KC_SPC, MO(2), KC_SPC, KC_RALT, KC_RCTL
65 ),
66/* Keymap BASE: (Base Layer) Default Layer
67 * .----.,----------------------------------------------------------------------.
68 * | M1 ||Esc| 1 | 2| 3| 4| 5| 6| | 7| 8| 9| 0| -| =| ~ | \ |
69 * |----||----------------------------------------------------------------------|
70 * | M2 ||Tab | Q| W| E| R| T| | Y| U| I| O| P| [ | ] |BkSpc|
71 * |----||----------------------------------------------------------------------|
72 * | M3 ||Ctrl | A| S| D| F| G| | H| J| K| L| ;| '|Return |
73 * `----'|----------------------------------------------------------------------|
74 * |Shift | Z| X| C| V| B| | B| N| M| ,| .| /|Shift | Fn |
75 * |----------------------------------------------------------------------|
76 * |CAPS| | Alt | Space | Fn | | Space | Alt | | Ctrl|
77 * `----------------------------------------------------------------------'
78 */
79[2] = LAYOUT_all( /* OSA Layer 2 */
80 KC_DEL, KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_GRV, KC_BSLS,
81 KC_PGUP, KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSPC,
82 KC_PGDN, KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT,
83 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_HOME,
84 KC_LCTL, KC_LALT, KC_SPC, MO(1), KC_SPC, KC_RALT, KC_RCTL
85 ),
86};
87
88
89
90
91//bool process_record_user(uint16_t keycode, keyrecord_t *record) {
92// switch (keycode) {
93// case QMKBEST:
94// if (record->event.pressed) {
95// // when keycode QMKBEST is pressed
96// SEND_STRING("QMK is the best thing ever!");
97// } else {
98// // when keycode QMKBEST is released
99// }
100// break;
101// case QMKURL:
102// if (record->event.pressed) {
103// // when keycode QMKURL is pressed
104// SEND_STRING("https://qmk.fm/" SS_TAP(X_ENTER));
105// } else {
106// // when keycode QMKURL is released
107// }
108// break;
109// }
110// return true;
111//}
112
113void matrix_init_user(void) {
114
115}
116
117void matrix_scan_user(void) {
118
119}
120
121void led_set_user(uint8_t usb_led) {
122
123}