diff options
| author | kakunpc <15257475+kakunpc@users.noreply.github.com> | 2019-07-26 04:30:15 +0900 |
|---|---|---|
| committer | Drashna Jaelre <drashna@live.com> | 2019-07-25 12:30:15 -0700 |
| commit | f204ed67f210b1dde20333727c79c47a5b70518a (patch) | |
| tree | 7d5c32e6c00811afc482b91cb77d6adba87c4fff /keyboards/angel64 | |
| parent | f3acaff65bf3590d6151013af5c36e059e1a633a (diff) | |
| download | qmk_firmware-f204ed67f210b1dde20333727c79c47a5b70518a.tar.gz qmk_firmware-f204ed67f210b1dde20333727c79c47a5b70518a.zip | |
[Keyboard] Set RGBLIGHT ENABLE for angel64 (#6405)
* set RGBLIGHT
* remove default keymap RGB enable
* set limit value
* Revert "set limit value"
This reverts commit 2374b2aa204f05f7bcea8ed65623b0c46a011aa2.
Diffstat (limited to 'keyboards/angel64')
| -rw-r--r-- | keyboards/angel64/config.h | 22 | ||||
| -rw-r--r-- | keyboards/angel64/rules.mk | 10 |
2 files changed, 16 insertions, 16 deletions
diff --git a/keyboards/angel64/config.h b/keyboards/angel64/config.h index 2289d6667..fb683bc15 100644 --- a/keyboards/angel64/config.h +++ b/keyboards/angel64/config.h | |||
| @@ -48,16 +48,16 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 48 | // #define BACKLIGHT_BREATHING | 48 | // #define BACKLIGHT_BREATHING |
| 49 | // #define BACKLIGHT_LEVELS 3 | 49 | // #define BACKLIGHT_LEVELS 3 |
| 50 | 50 | ||
| 51 | // #define RGB_DI_PIN E2 | 51 | #define RGB_DI_PIN D3 |
| 52 | // #ifdef RGB_DI_PIN | 52 | #ifdef RGB_DI_PIN |
| 53 | // #define RGBLED_NUM 64 | 53 | #define RGBLED_NUM 64 |
| 54 | // #define RGBLIGHT_HUE_STEP 8 | 54 | #define RGBLIGHT_HUE_STEP 8 |
| 55 | // #define RGBLIGHT_SAT_STEP 8 | 55 | #define RGBLIGHT_SAT_STEP 8 |
| 56 | // #define RGBLIGHT_VAL_STEP 8 | 56 | #define RGBLIGHT_VAL_STEP 8 |
| 57 | // #define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */ | 57 | #define RGBLIGHT_LIMIT_VAL 25 /* The maximum brightness level */ |
| 58 | // #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */ | 58 | #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */ |
| 59 | // /*== all animations enable ==*/ | 59 | /*== all animations enable ==*/ |
| 60 | // #define RGBLIGHT_ANIMATIONS | 60 | #define RGBLIGHT_ANIMATIONS |
| 61 | // /*== or choose animations ==*/ | 61 | // /*== or choose animations ==*/ |
| 62 | // #define RGBLIGHT_EFFECT_BREATHING | 62 | // #define RGBLIGHT_EFFECT_BREATHING |
| 63 | // #define RGBLIGHT_EFFECT_RAINBOW_MOOD | 63 | // #define RGBLIGHT_EFFECT_RAINBOW_MOOD |
| @@ -74,7 +74,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 74 | // /*==== use exp() and sin() ====*/ | 74 | // /*==== use exp() and sin() ====*/ |
| 75 | // #define RGBLIGHT_EFFECT_BREATHE_CENTER 1.85 // 1 to 2.7 | 75 | // #define RGBLIGHT_EFFECT_BREATHE_CENTER 1.85 // 1 to 2.7 |
| 76 | // #define RGBLIGHT_EFFECT_BREATHE_MAX 255 // 0 to 255 | 76 | // #define RGBLIGHT_EFFECT_BREATHE_MAX 255 // 0 to 255 |
| 77 | // #endif | 77 | #endif |
| 78 | 78 | ||
| 79 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | 79 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ |
| 80 | #define DEBOUNCE 5 | 80 | #define DEBOUNCE 5 |
diff --git a/keyboards/angel64/rules.mk b/keyboards/angel64/rules.mk index b1ef9b765..06169e8df 100644 --- a/keyboards/angel64/rules.mk +++ b/keyboards/angel64/rules.mk | |||
| @@ -61,17 +61,17 @@ BOOTLOADER = atmel-dfu | |||
| 61 | # Build Options | 61 | # Build Options |
| 62 | # change yes to no to disable | 62 | # change yes to no to disable |
| 63 | # | 63 | # |
| 64 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000) | 64 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000) |
| 65 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | 65 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) |
| 66 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 66 | EXTRAKEY_ENABLE = no # Audio control and System control(+450) |
| 67 | CONSOLE_ENABLE = yes # Console for debug(+400) | 67 | CONSOLE_ENABLE = no # Console for debug(+400) |
| 68 | COMMAND_ENABLE = yes # Commands for debug and configuration | 68 | COMMAND_ENABLE = no # Commands for debug and configuration |
| 69 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | 69 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE |
| 70 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 70 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
| 71 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 71 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
| 72 | NKRO_ENABLE = no # USB Nkey Rollover | 72 | NKRO_ENABLE = no # USB Nkey Rollover |
| 73 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 73 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
| 74 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 74 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
| 75 | MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config) | 75 | MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config) |
| 76 | UNICODE_ENABLE = no # Unicode | 76 | UNICODE_ENABLE = no # Unicode |
| 77 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 77 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
