fix clueboard/66:magicmonty to bring hue under the 255 limit
parent
c8edd6ec9e
commit
404bcc961c
|
@ -134,23 +134,23 @@ enum layer_id {
|
||||||
void clueboard_set_led(uint8_t id, uint8_t val) {
|
void clueboard_set_led(uint8_t id, uint8_t val) {
|
||||||
switch (id) {
|
switch (id) {
|
||||||
case LAYER_BASE:
|
case LAYER_BASE:
|
||||||
rgblight_sethsv_noeeprom(190, 255, val);
|
rgblight_sethsv_noeeprom(135, 255, val);
|
||||||
break;
|
break;
|
||||||
case LAYER_FUNCTION:
|
case LAYER_FUNCTION:
|
||||||
rgblight_sethsv_noeeprom(46, 255, val);
|
rgblight_sethsv_noeeprom(32, 255, val);
|
||||||
break;
|
break;
|
||||||
case LAYER_MEDIA:
|
case LAYER_MEDIA:
|
||||||
rgblight_sethsv_noeeprom(86, 255, val);
|
rgblight_sethsv_noeeprom(60, 255, val);
|
||||||
break;
|
break;
|
||||||
case LAYER_CONTROL:
|
case LAYER_CONTROL:
|
||||||
rgblight_sethsv_noeeprom(346, 255, val);
|
rgblight_sethsv_noeeprom(245, 255, val);
|
||||||
break;
|
break;
|
||||||
case LAYER_MOUSE:
|
case LAYER_MOUSE:
|
||||||
rgblight_sethsv_noeeprom(206, 255, val);
|
rgblight_sethsv_noeeprom(146, 255, val);
|
||||||
break;
|
break;
|
||||||
#if defined(MIDI_ENABLE)
|
#if defined(MIDI_ENABLE)
|
||||||
case LAYER_MIDI:
|
case LAYER_MIDI:
|
||||||
rgblight_sethsv_noeeprom(316, 255, val);
|
rgblight_sethsv_noeeprom(224, 255, val);
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@ -158,15 +158,15 @@ void clueboard_set_led(uint8_t id, uint8_t val) {
|
||||||
|
|
||||||
const uint16_t oct_hues[10] = {
|
const uint16_t oct_hues[10] = {
|
||||||
0,
|
0,
|
||||||
30,
|
20,
|
||||||
|
40,
|
||||||
60,
|
60,
|
||||||
90,
|
80,
|
||||||
|
100,
|
||||||
120,
|
120,
|
||||||
150,
|
140,
|
||||||
180,
|
160,
|
||||||
210,
|
180
|
||||||
240,
|
|
||||||
300
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#define MAX_OCT 9
|
#define MAX_OCT 9
|
||||||
|
|
Loading…
Reference in New Issue