fl16: Indicate UEFI hotkey mode by background color

red: enabled
white: disabled

Signed-off-by: Daniel Schaefer <dhs@frame.work>
This commit is contained in:
Daniel Schaefer 2023-07-21 16:31:16 +08:00
parent 4264f90c84
commit 503255e33c

View File

@ -65,10 +65,17 @@ void handle_factory_command(uint8_t *data) {
#endif
break;
case f_bios_mode:
if (command_data[0] == 0x01)
if (command_data[0] == 0x01) {
bios_mode = true;
else
// Red
rgb_matrix_sethsv_noeeprom(0, 0xFF, 0xFF);
rgb_matrix_mode_noeeprom(1);
} else {
// White
rgb_matrix_sethsv_noeeprom(0, 0, 0xFF);
rgb_matrix_mode_noeeprom(1);
bios_mode = false;
}
break;
case f_factory_mode:
enable_factory_mode(command_data[0] == 0x01);