qmk/keyboards/monstargear/xo87/rgb/rgb.c
2025-09-09 10:09:14 +01:00

39 lines
1.3 KiB
C

/* Copyright 2021 datafx
*
* 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 "quantum.h"
bool rgb_matrix_indicators_kb(void) {
if (!rgb_matrix_indicators_user()) {
return false;
}
led_t host_leds = host_keyboard_led_state();
if (host_leds.scroll_lock) {
rgb_matrix_set_color(92, 0xFF, 0x0, 0x0);
} else {
rgb_matrix_set_color(92, 0x0, 0x0, 0x0);
}
if (host_leds.num_lock) {
rgb_matrix_set_color(93, 0xFF, 0x0, 0x0);
} else {
rgb_matrix_set_color(93, 0x0, 0x0, 0x0);
}
if (host_leds.caps_lock) {
rgb_matrix_set_color(94, 0xFF, 0x0, 0x0);
} else {
rgb_matrix_set_color(94, 0x0, 0x0, 0x0);
}
return true;
}