From 9774177fc459c4d1942754eae38e4e05f06bb6b9 Mon Sep 17 00:00:00 2001 From: Alvin Schiller <103769832+AlvinSchiller@users.noreply.github.com> Date: Thu, 9 May 2024 00:16:49 +0200 Subject: [PATCH] docs: fix typo --- components/gpio_control/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/gpio_control/README.md b/components/gpio_control/README.md index e696f2a1c..3b53d26d0 100644 --- a/components/gpio_control/README.md +++ b/components/gpio_control/README.md @@ -82,10 +82,10 @@ However, a button has more parameters than these. In the following comprehensive * `pull_off`. Use this to deactivate internal pull-up/pulldown resistors. This is useful if your wiring includes your own (external) pull up / down resistors. * **edge**: Configures the events in which the GPIO library shall trigger the callback function. Valid settings: * `falling` (Default). Triggers if the GPIO voltage goes down. - * `rising`. Trigegrs only if the GPIO voltage goes up. + * `rising`. Triggers only if the GPIO voltage goes up. * `both`. Triggers in both cases. * **bouncetime**: This is a setting of the GPIO library to limit bouncing effects during button usage. Default is `500` ms. -* **antibouncehack**: Despite the integrated bounce reduction of the GPIO library some users may notice false triggers of their buttons (e.g. unrequested / double actions when releasing the button). If you encounter such problems, try setting this setting to `True` to activate an additional countermeasure. +* **antibouncehack**: Despite the integrated bounce reduction of the GPIO library some users may notice false triggers of their buttons (e.g. unrequested / double actions when releasing the button). If you encounter such problems, try setting this to `True` to activate an additional countermeasure. Note: If you prefer, you may also use `Type: SimpleButton` instead of `Type: Button` - this makes no difference.