Suspend and wake up RGB

This commit is contained in:
Richard Baptist 2019-09-30 14:22:56 +02:00
parent 2f100f5807
commit 3ce41d941a
No known key found for this signature in database
GPG Key ID: 115D8B1815981F35

View File

@ -275,4 +275,10 @@ void oled_task_user(void) {
} }
#endif #endif
void suspend_power_down_keymap(void) {
rgb_matrix_set_suspend_state(true);
}
void suspend_wakeup_init_keymap(void) {
rgb_matrix_set_suspend_state(false);
} }