Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable inswitch RGB when computer goes to bed #14993

Merged
merged 2 commits into from
Oct 31, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions users/mechmerlin/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog
All notable changes to my userspace will be documented in this file.

## [0.4.1] - 2021-10-30

### Added
- `RGB_DISABLE_WHEN_USB_SUSPENDED` added in `config.h`. Couple of my boards now have per key RGB and have been staying on when my computer sleeps.
## [0.4.0] - 2021-10-05

### Added
Expand Down
4 changes: 4 additions & 0 deletions users/mechmerlin/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
#define RGBLIGHT_ANIMATIONS
#endif // RGBLIGHT_ENABLE

#ifdef RGB_MATRIX_ENABLE
#define RGB_DISABLE_WHEN_USB_SUSPENDED
#endif

#ifdef AUDIO_CLICKY
#define AUDIO_CLICKY_ON
#define AUDIO_CLICKY_FREQ_DEFAULT 261.63f
Expand Down
4 changes: 2 additions & 2 deletions users/mechmerlin/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ Output the version of QMK Firmware on device.
## QMK Features
----

### RGBLIGHT_SLEEP
### RGBLIGHT_SLEEP and RGB_DISABLE_WHEN_USB_SUSPENDED

Ensures that when my computer is in sleep mode, the keyboard underglow lights will also be off.
Ensures that when my computer is in sleep mode, the keyboard underglow and inswitch RGB lights will also be off.

### Audio Clicky

Expand Down