Add easier way to set default single layer (#24376)
* Add set_single_default_layer to match set_single_persistent_default_layer * Implements exactly the same behavior, except the write to EEPROM
This commit is contained in:
parent
208ebf54a9
commit
3cf94cb308
4 changed files with 11 additions and 3 deletions
|
@ -69,7 +69,7 @@ layer_state_t layer_state_set_user(layer_state_t state) {
|
|||
|
||||
Do you want to set the default layer, so that it's retained even after you unplug the board? If so, this is the function for you.
|
||||
|
||||
To use this, you would use `set_single_persistent_default_layer(layer)`. If you have a name defined for your layer, you can use that instead (such as _QWERTY, _DVORAK or _COLEMAK).
|
||||
To do this, you would use `set_single_persistent_default_layer(layer)`. If you have a name defined for your layer, you can use that instead (such as _QWERTY, _DVORAK or _COLEMAK).
|
||||
|
||||
This will set the default layer, update the persistent settings, and play a tune if you have [Audio](features/audio) enabled on your board, and the default layer sounds set.
|
||||
|
||||
|
@ -82,6 +82,8 @@ To configure the default layer sounds, you would want to define this in your `co
|
|||
}
|
||||
```
|
||||
|
||||
If you do not require it to be retained after you unplug the board, use `set_single_default_layer(layer)` instead.
|
||||
|
||||
|
||||
::: tip
|
||||
There are a large number of predefined songs in [quantum/audio/song_list.h](https://github.com/qmk/qmk_firmware/blob/master/quantum/audio/song_list.h) that you can use.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue