Relocate work_louder VIA logic (#24011)

This commit is contained in:
Joel Challis 2024-06-29 09:33:20 +01:00 committed by GitHub
parent 479b7db2a6
commit 7cc15283d2
2 changed files with 22 additions and 0 deletions

View file

@ -1,6 +1,10 @@
// Copyright 2023 QMK
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#define NO_ACTION_ONESHOT
#undef ENABLE_RGB_MATRIX_JELLYBEAN_RAINDROPS
#undef ENABLE_RGB_MATRIX_PIXEL_FRACTAL
#define VIA_EEPROM_LAYOUT_OPTIONS_DEFAULT 0x1

View file

@ -214,3 +214,21 @@ void via_custom_value_command_kb(uint8_t *data, uint8_t length) {
}
*command_id = id_unhandled;
}
bool via_layout_2u = false;
void via_set_layout_options_kb(uint32_t value) {
via_layout_2u = (bool)value;
}
#ifdef RGB_MATRIX_ENABLE
bool rgb_matrix_indicators_user(void) {
if (via_layout_2u) {
rgb_matrix_set_color(5, 0, 0, 0);
rgb_matrix_set_color(7, 0, 0, 0);
} else {
rgb_matrix_set_color(6, 0, 0, 0);
}
return false;
}
#endif