Browse Source

Add RGB_SET keycode to Melody96 and RGB files to userspace

pull/5289/head
Konstantin Đorđević 5 years ago
parent
commit
2f07627a5d
5 changed files with 45 additions and 4 deletions
  1. +19
    -4
      keyboards/melody96/keymaps/konstantin/keymap.c
  2. +3
    -0
      users/konstantin/konstantin.h
  3. +3
    -0
      users/konstantin/rgb.c
  4. +17
    -0
      users/konstantin/rgb.h
  5. +3
    -0
      users/konstantin/rules.mk

+ 19
- 4
keyboards/melody96/keymaps/konstantin/keymap.c View File

@ -1,6 +1,21 @@
#include QMK_KEYBOARD_H
#include "konstantin.h"
enum keycodes_keymap {
RGB_SET = RANGE_KEYMAP,
};
bool process_record_keymap(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
case RGB_SET:
rgblight_sethsv(GODSPEED_BLUE.h, GODSPEED_BLUE.s, GODSPEED_BLUE.v);
return false;
default:
return true;
}
}
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
/* Base layer
*
@ -32,8 +47,8 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
*
* RTg ÷ ×
*
* M4 M2 M M1 M3 M5 ClearRH+RS+RV+
*
* M4 M2 M M1 M3 M5 UCM ClearRH+RS+RV+
* RSt
* M M M MW RH-RS-RV-
*
* MA0MA2MWMW Vo-Vo+Mut PgURMBRMKRMG
@ -44,8 +59,8 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[L_FN] = LAYOUT( \
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RGB_TOG, DIVIDE, TIMES, MINUS,
KC_BTN4, KC_BTN2, KC_MS_U, KC_BTN1, KC_BTN3, KC_BTN5, _______, _______, _______, _______, _______, _______, _______, CLEAR, RGB_HUI, RGB_SAI, RGB_VAI, XXXXXXX,
_______, KC_MS_L, KC_MS_D, KC_MS_R, KC_WH_U, _______, _______, _______, _______, _______, _______, _______, _______, RGB_HUD, RGB_SAD, RGB_VAD, _______,
KC_BTN4, KC_BTN2, KC_MS_U, KC_BTN1, KC_BTN3, KC_BTN5, _______, UC_MOD, _______, _______, _______, _______, _______, CLEAR, RGB_HUI, RGB_SAI, RGB_VAI, XXXXXXX,
_______, KC_MS_L, KC_MS_D, KC_MS_R, KC_WH_U, _______, _______, _______, _______, _______, _______, _______, _______, RGB_HUD, RGB_SAD, RGB_VAD, RGB_SET,
_______, _______, KC_ACL0, KC_ACL2, KC_WH_L, KC_WH_R, _______, _______, _______, KC_VOLD, KC_VOLU, KC_MUTE, _______, KC_PGUP, RGB_M_B, RGB_M_K, RGB_M_G, XXXXXXX,
_______, DST_P_R, DST_N_A, KC_WH_D, _______, XXXXXXX, KC_APP, KC_HOME, KC_PGDN, KC_END, RGB_RMOD,RGB_MOD, RGB_M_P
),


+ 3
- 0
users/konstantin/konstantin.h View File

@ -1,6 +1,9 @@
#pragma once
#include "quantum.h"
#if defined(RGBLIGHT_ENABLE) || defined(RGBMATRIX_ENABLE)
#include "rgb.h"
#endif
#ifdef TAP_DANCE_ENABLE
#include "tap_dance.h"
#endif


+ 3
- 0
users/konstantin/rgb.c View File

@ -0,0 +1,3 @@
#include "rgb.h"
const hsv_t GODSPEED_BLUE = { .h = 214, .s = 17, .v = 73 };

+ 17
- 0
users/konstantin/rgb.h View File

@ -0,0 +1,17 @@
#pragma once
#include "quantum.h"
typedef struct {
uint16_t h;
uint8_t s;
uint8_t v;
} hsv_t;
typedef struct {
uint8_t r;
uint8_t g;
uint8_t b;
} rgb_t;
extern const hsv_t GODSPEED_BLUE;

+ 3
- 0
users/konstantin/rules.mk View File

@ -1,4 +1,7 @@
SRC += konstantin.c
ifneq (,$(filter yes,$(RGBLIGHT_ENABLE) $(RGB_MATRIX_ENABLE))) # if either is yes
SRC += rgb.c
endif
ifeq ($(strip $(TAP_DANCE_ENABLE)), yes)
SRC += tap_dance.c
endif


Loading…
Cancel
Save