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

[Keymap] Update rp2040_orbweaver #24704

Merged
merged 3 commits into from
Dec 11, 2024
Merged
Changes from 1 commit
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
10 changes: 10 additions & 0 deletions keyboards/lostdotfish/rp2040_orbweaver/keymaps/default/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,13 @@ layer_state_t layer_state_set_user(layer_state_t state) {
}
return state;
}
void suspend_power_down_kb(void) {
// code will run multiple times while keyboard is suspended
gpio_write_pin_high(GP23);
gpio_write_pin_high(GP24);
gpio_write_pin_high(GP25);
Lostdotfish marked this conversation as resolved.
Show resolved Hide resolved
}

void suspend_wakeup_init_user(void) {
layer_state_set_user(layer_state);
Lostdotfish marked this conversation as resolved.
Show resolved Hide resolved
}
Loading