Browse Source

[Bug] Use correct functions for RGB Matrix support in VIA (#19554)

pull/19557/head 0.19.8
Drashna Jaelre 1 year ago
committed by GitHub
parent
commit
90fd08bf4b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      quantum/via.c

+ 2
- 2
quantum/via.c View File

@ -704,11 +704,11 @@ void via_qmk_rgb_matrix_set_value(uint8_t *data) {
break;
}
case id_qmk_rgb_matrix_effect_speed: {
rgblight_set_speed_noeeprom(value_data[0]);
rgb_matrix_set_speed_noeeprom(value_data[0]);
break;
}
case id_qmk_rgb_matrix_color: {
rgblight_sethsv_noeeprom(value_data[0], value_data[1], rgb_matrix_get_val());
rgb_matrix_sethsv_noeeprom(value_data[0], value_data[1], rgb_matrix_get_val());
break;
}
}


Loading…
Cancel
Save