aboutsummaryrefslogtreecommitdiff
path: root/docs/feature_haptic_feedback.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/feature_haptic_feedback.md')
-rw-r--r--docs/feature_haptic_feedback.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/feature_haptic_feedback.md b/docs/feature_haptic_feedback.md
index 1f36f5b05..4054c5d9b 100644
--- a/docs/feature_haptic_feedback.md
+++ b/docs/feature_haptic_feedback.md
@@ -4,9 +4,12 @@
4 4
5The following options are currently available for haptic feedback in `rules.mk`: 5The following options are currently available for haptic feedback in `rules.mk`:
6 6
7`HAPTIC_ENABLE += DRV2605L` 7```
8HAPTIC_ENABLE = yes
8 9
9`HAPTIC_ENABLE += SOLENOID` 10HAPTIC_DRIVER += DRV2605L
11HAPTIC_DRIVER += SOLENOID
12```
10 13
11## Known Supported Hardware 14## Known Supported Hardware
12 15
@@ -172,6 +175,7 @@ With the entry of `#define NO_HAPTIC_MOD` in config.h, the following keys will n
172 175
173* Usual modifier keys such as Control/Shift/Alt/Gui (For example `KC_LCTRL`) 176* Usual modifier keys such as Control/Shift/Alt/Gui (For example `KC_LCTRL`)
174* `MO()` momentary keys. See also [Layers](feature_layers.md). 177* `MO()` momentary keys. See also [Layers](feature_layers.md).
178* `LM()` momentary keys with mod active.
175* `LT()` layer tap keys, when held to activate a layer. However when tapped, and the key is quickly released, and sends a keycode, haptic feedback is still triggered. 179* `LT()` layer tap keys, when held to activate a layer. However when tapped, and the key is quickly released, and sends a keycode, haptic feedback is still triggered.
176* `TT()` layer tap toggle keys, when held to activate a layer. However when tapped `TAPPING_TOGGLE` times to permanently toggle the layer, on the last tap haptic feedback is still triggered. 180* `TT()` layer tap toggle keys, when held to activate a layer. However when tapped `TAPPING_TOGGLE` times to permanently toggle the layer, on the last tap haptic feedback is still triggered.
177* `MT()` mod tap keys, when held to keep a usual modifier key pressed. However when tapped, and the key is quickly released, and sends a keycode, haptic feedback is still triggered. See also [Mod-Tap](mod_tap.md). 181* `MT()` mod tap keys, when held to keep a usual modifier key pressed. However when tapped, and the key is quickly released, and sends a keycode, haptic feedback is still triggered. See also [Mod-Tap](mod_tap.md).