2022-10-10 16:58:32 +02:00
|
|
|
/* Copyright 2022 Christoph Cullmann
|
2022-10-01 11:03:31 +02:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
|
2022-10-21 23:01:16 +02:00
|
|
|
// layout helper macro, we just use 34 keys
|
2023-08-11 23:16:38 +02:00
|
|
|
#undef LAYOUT
|
|
|
|
#define LAYOUT(\
|
2022-10-21 23:01:16 +02:00
|
|
|
K00, K01, K02, K03, K04, K05, K06, K07, K08, K09,\
|
|
|
|
K10, K11, K12, K13, K14, K15, K16, K17, K18, K19,\
|
|
|
|
K20, K21, K22, K23, K24, K25, K26, K27, K28, K29,\
|
|
|
|
K30, K31, K32, K33\
|
|
|
|
)\
|
|
|
|
LAYOUT_ortho_4x12(\
|
|
|
|
K00, K01, K02, K03, K04, KC_NO, KC_NO, K05, K06, K07, K08, K09,\
|
|
|
|
K10, K11, K12, K13, K14, KC_NO, KC_NO, K15, K16, K17, K18, K19,\
|
|
|
|
K20, K21, K22, K23, K24, KC_NO, KC_NO, K25, K26, K27, K28, K29,\
|
|
|
|
KC_NO, KC_NO, KC_NO, K30, K31, KC_NO, KC_NO, K32, K33, KC_NO, KC_NO, KC_NO\
|
|
|
|
)
|
|
|
|
|
2023-08-12 22:02:23 +02:00
|
|
|
// Planck is like a split keyboard, beside for the last row
|
|
|
|
static bool my_on_left_hand(keypos_t pos)
|
|
|
|
{
|
|
|
|
return (pos.row < 3) || (pos.row == 3 && pos.col < 3) || (pos.row == 7 && pos.col > 2);
|
|
|
|
}
|
2022-10-18 23:58:17 +02:00
|
|
|
|
2023-08-12 22:02:23 +02:00
|
|
|
// our shared 34 keys keymap
|
|
|
|
#include "../common/keymap.h"
|
2022-10-01 16:34:28 +02:00
|
|
|
|
|
|
|
/* plwnck rev6 RGB layout:
|
|
|
|
* ----------------------------------
|
|
|
|
* | 6 5 4 3 |
|
|
|
|
* | 0 |
|
|
|
|
* | 7 8 1 2 |
|
|
|
|
* ----------------------------------
|
|
|
|
*/
|
|
|
|
|
2023-08-12 22:24:54 +02:00
|
|
|
const rgblight_segment_t PROGMEM base_layer[] = RGBLIGHT_LAYER_SEGMENTS(
|
2023-08-11 23:30:50 +02:00
|
|
|
{0, 9, HSV_WHITE}
|
2022-10-01 16:34:28 +02:00
|
|
|
);
|
|
|
|
|
2022-10-19 09:58:27 +02:00
|
|
|
const rgblight_segment_t PROGMEM sym_layer[] = RGBLIGHT_LAYER_SEGMENTS(
|
2023-08-11 23:30:50 +02:00
|
|
|
{0, 9, HSV_GOLD}
|
2022-10-01 16:34:28 +02:00
|
|
|
);
|
|
|
|
|
2022-10-19 09:58:27 +02:00
|
|
|
const rgblight_segment_t PROGMEM num_layer[] = RGBLIGHT_LAYER_SEGMENTS(
|
2023-08-11 23:30:50 +02:00
|
|
|
{0, 9, HSV_GREEN}
|
2022-10-01 16:34:28 +02:00
|
|
|
);
|
|
|
|
|
2022-10-01 18:09:51 +02:00
|
|
|
const rgblight_segment_t PROGMEM fn_layer[] = RGBLIGHT_LAYER_SEGMENTS(
|
2023-08-11 23:30:50 +02:00
|
|
|
{0, 9, HSV_RED}
|
2022-10-01 16:34:28 +02:00
|
|
|
);
|
|
|
|
|
2022-10-19 09:58:27 +02:00
|
|
|
const rgblight_segment_t PROGMEM nav_layer[] = RGBLIGHT_LAYER_SEGMENTS(
|
2023-08-11 23:30:50 +02:00
|
|
|
{0, 9, HSV_BLUE}
|
2022-10-18 23:58:17 +02:00
|
|
|
);
|
|
|
|
|
2023-08-12 22:02:23 +02:00
|
|
|
const rgblight_segment_t PROGMEM magic_layer[] = RGBLIGHT_LAYER_SEGMENTS(
|
|
|
|
{0, 9, RGB_CORAL}
|
|
|
|
);
|
|
|
|
|
2022-10-01 16:34:28 +02:00
|
|
|
const rgblight_segment_t * const PROGMEM my_rgb_layers[] = RGBLIGHT_LAYERS_LIST(
|
2023-08-12 22:24:54 +02:00
|
|
|
[_BASE] = base_layer,
|
2023-08-11 23:16:38 +02:00
|
|
|
[_SYM] = sym_layer,
|
|
|
|
[_NUM] = num_layer,
|
|
|
|
[_FN] = fn_layer,
|
2023-08-12 22:02:23 +02:00
|
|
|
[_NAV] = nav_layer,
|
|
|
|
[_MAGIC] = magic_layer
|
2022-10-01 16:34:28 +02:00
|
|
|
);
|
|
|
|
|
2022-10-18 21:06:28 +02:00
|
|
|
void keyboard_post_init_user(void) {
|
2022-10-01 16:34:28 +02:00
|
|
|
// Enable the LED layers
|
|
|
|
rgblight_layers = my_rgb_layers;
|
|
|
|
}
|
|
|
|
|
|
|
|
layer_state_t layer_state_set_user(layer_state_t state)
|
|
|
|
{
|
2023-08-12 22:24:54 +02:00
|
|
|
rgblight_set_layer_state(_BASE, layer_state_cmp(state, _BASE));
|
2023-08-11 23:16:38 +02:00
|
|
|
rgblight_set_layer_state(_SYM, layer_state_cmp(state, _SYM));
|
|
|
|
rgblight_set_layer_state(_NUM, layer_state_cmp(state, _NUM));
|
|
|
|
rgblight_set_layer_state(_FN, layer_state_cmp(state, _FN));
|
|
|
|
rgblight_set_layer_state(_NAV, layer_state_cmp(state, _NAV));
|
2023-08-12 22:02:23 +02:00
|
|
|
rgblight_set_layer_state(_MAGIC, layer_state_cmp(state, _MAGIC));
|
2022-10-01 16:34:28 +02:00
|
|
|
return state;
|
|
|
|
}
|