forked from mirrors/qmk_firmware
bdd1f318c3
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: mtei <2170248+mtei@users.noreply.github.com> Co-authored-by: Nick Brassel <nick@tzarc.org>
22 lines
465 B
C
22 lines
465 B
C
// Copyright 2022 Makoto Kurauchi (@MakotoKurauchi)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include QMK_KEYBOARD_H
|
|
#include "rgblite.h"
|
|
|
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|
[0] = LAYOUT_ortho_1x1(
|
|
KC_MUTE
|
|
)
|
|
};
|
|
|
|
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
|
if (record->event.pressed) {
|
|
rgblite_increase_hue();
|
|
}
|
|
return true;
|
|
}
|
|
|
|
void keyboard_post_init_user(void) {
|
|
rgblite_increase_hue();
|
|
}
|