~ruther/qmk_firmware

404bcc961c8eff704cd037aea64e0cf6155c1c4c — Zach White 4 years ago c8edd6e
fix clueboard/66:magicmonty to bring hue under the 255 limit
1 files changed, 13 insertions(+), 13 deletions(-)

M keyboards/clueboard/66/keymaps/magicmonty/keymap.c
M keyboards/clueboard/66/keymaps/magicmonty/keymap.c => keyboards/clueboard/66/keymaps/magicmonty/keymap.c +13 -13
@@ 134,23 134,23 @@ enum layer_id {
void clueboard_set_led(uint8_t id, uint8_t val) {
  switch (id) {
    case LAYER_BASE:
      rgblight_sethsv_noeeprom(190, 255, val);
      rgblight_sethsv_noeeprom(135, 255, val);
      break;
    case LAYER_FUNCTION:
      rgblight_sethsv_noeeprom(46, 255, val);
      rgblight_sethsv_noeeprom(32, 255, val);
      break;
    case LAYER_MEDIA:
      rgblight_sethsv_noeeprom(86, 255, val);
      rgblight_sethsv_noeeprom(60, 255, val);
      break;
    case LAYER_CONTROL:
      rgblight_sethsv_noeeprom(346, 255, val);
      rgblight_sethsv_noeeprom(245, 255, val);
      break;
    case LAYER_MOUSE:
      rgblight_sethsv_noeeprom(206, 255, val);
      rgblight_sethsv_noeeprom(146, 255, val);
      break;
#if defined(MIDI_ENABLE)
    case LAYER_MIDI:
      rgblight_sethsv_noeeprom(316, 255, val);
      rgblight_sethsv_noeeprom(224, 255, val);
      break;
#endif
  }


@@ 158,15 158,15 @@ void clueboard_set_led(uint8_t id, uint8_t val) {

const uint16_t oct_hues[10] = {
  0,
  30,
  20,
  40,
  60,
  90,
  80,
  100,
  120,
  150,
  180,
  210,
  240,
  300
  140,
  160,
  180
};

#define MAX_OCT  9