diff options
author | Drashna Jaelre <drashna@drashna.net> | 2023-05-06 06:38:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-06 06:38:45 -0700 |
commit | 59eb8940b028bfa2a215231719b8eeca57701ed1 (patch) | |
tree | 45f67dd68176d760df43baf340c822f5b17ed8f3 /docs | |
parent | 578102b40056693de8a92b49cd0c48e51ff4ad4a (diff) |
Make Pointing Device Auto Layer more configurable (#20061)
Co-authored-by: Pablo MartÃnez <58857054+elpekenin@users.noreply.github.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/feature_pointing_device.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/feature_pointing_device.md b/docs/feature_pointing_device.md index e5a268e47b..909eff826d 100644 --- a/docs/feature_pointing_device.md +++ b/docs/feature_pointing_device.md @@ -689,6 +689,10 @@ There are several functions that allow for more advanced interaction with the au | `auto_mouse_layer_off(void)` | Disable target layer if appropriate will call (makes call to `layer_state_set`) | | `void`(None) | | `auto_mouse_toggle(void)` | Toggle on/off target toggle state (disables layer deactivation when true) | | `void`(None) | | `get_auto_mouse_toggle(void)` | Return value of toggling state variable | | `bool` | +| `set_auto_mouse_timeout(uint16_t timeout)` | Change/set the timeout for turing off the layer | | `void`(None) | +| `get_auto_mouse_timeout(void)` | Return the current timeout for turing off the layer | | `uint16_t` | +| `set_auto_mouse_debounce(uint16_t timeout)` | Change/set the debounce for preventing layer activation | | `void`(None) | +| `get_auto_mouse_debounce(void)` | Return the current debounce for preventing layer activation | | `uint8_t` | _NOTES:_ - _Due to the nature of how some functions work, the `auto_mouse_trigger_reset`, and `auto_mouse_layer_off` functions should never be called in the `layer_state_set_*` stack as this can cause indefinite loops._ |