summaryrefslogtreecommitdiff
path: root/docs/porting_your_keyboard_to_qmk.md
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2022-12-08 20:41:38 +0000
committerGitHub <noreply@github.com>2022-12-08 20:41:38 +0000
commit6133b08e73813c19bca8934a44c41c7c2d297a71 (patch)
tree8c1e7e94867276982908ec330a06e7a796d8f055 /docs/porting_your_keyboard_to_qmk.md
parent6ae0f831387305c0bb16b7103685fce25081b8e8 (diff)
Rework input_pressed_state docs (#19267)
* Revert changes to porting * Update reference_info_json.md
Diffstat (limited to 'docs/porting_your_keyboard_to_qmk.md')
-rw-r--r--docs/porting_your_keyboard_to_qmk.md12
1 files changed, 0 insertions, 12 deletions
diff --git a/docs/porting_your_keyboard_to_qmk.md b/docs/porting_your_keyboard_to_qmk.md
index 05054e25c7..484d079ea6 100644
--- a/docs/porting_your_keyboard_to_qmk.md
+++ b/docs/porting_your_keyboard_to_qmk.md
@@ -94,18 +94,6 @@ The next section of the `info` file deals with your keyboard's matrix. The first
The size of the `matrix_pins.cols` and `matrix_pins.rows` arrays infer the size of the matrix (previously `MATRIX_ROWS` and `MATRIX_COLS`).
-## Configuration Options
-
-To invert the keypress logic, configure `input_pressed_state`:
-
-```json
- "matrix_pins": {
- "input_pressed_state": 1,
-},
-```
-
-This configures state of the GPIO pins when the key is pressed - `1` for high, `0` for low. Default value is `0`.
-
Finally, you can specify the direction your diodes point. This can be `COL2ROW` or `ROW2COL`.
```json