mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-06-26 23:22:43 -04:00
Relocate work_louder VIA logic (#24011)
This commit is contained in:
parent
479b7db2a6
commit
7cc15283d2
2 changed files with 22 additions and 0 deletions
|
@ -1,6 +1,10 @@
|
||||||
// Copyright 2023 QMK
|
// Copyright 2023 QMK
|
||||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define NO_ACTION_ONESHOT
|
#define NO_ACTION_ONESHOT
|
||||||
|
|
||||||
#undef ENABLE_RGB_MATRIX_JELLYBEAN_RAINDROPS
|
#undef ENABLE_RGB_MATRIX_JELLYBEAN_RAINDROPS
|
||||||
#undef ENABLE_RGB_MATRIX_PIXEL_FRACTAL
|
#undef ENABLE_RGB_MATRIX_PIXEL_FRACTAL
|
||||||
|
|
||||||
|
#define VIA_EEPROM_LAYOUT_OPTIONS_DEFAULT 0x1
|
||||||
|
|
|
@ -214,3 +214,21 @@ void via_custom_value_command_kb(uint8_t *data, uint8_t length) {
|
||||||
}
|
}
|
||||||
*command_id = id_unhandled;
|
*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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue