From 023ac42207f0c00e35b4df31ecc2cbd9330fb5db Mon Sep 17 00:00:00 2001 From: Malik Samath <87662644+Kilamalik@users.noreply.github.com> Date: Tue, 15 Jul 2025 23:43:41 +0530 Subject: [PATCH 1/2] Refactor Debounce.md Shortened the whole implementation while leaving the output same. --- content/built-in-examples/02.digital/Debounce/Debounce.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/built-in-examples/02.digital/Debounce/Debounce.md b/content/built-in-examples/02.digital/Debounce/Debounce.md index 6f856675b2..730ddd0e99 100644 --- a/content/built-in-examples/02.digital/Debounce/Debounce.md +++ b/content/built-in-examples/02.digital/Debounce/Debounce.md @@ -38,7 +38,7 @@ Pushbuttons often generate spurious open/close transitions when pressed, due to The sketch below is based on **Limor Fried's version of debounce**, but the logic is inverted from her example. In her example, the switch returns LOW when closed, and HIGH when open. Here, the switch returns HIGH when pressed and LOW when not pressed. - + ### Learn more @@ -46,4 +46,4 @@ You can find more basic tutorials in the [built-in examples](/built-in-examples) You can also explore the [language reference](https://www.arduino.cc/reference/en/), a detailed collection of the Arduino programming language. -*Last revision 2015/07/29 by SM* \ No newline at end of file +*Last revision 2015/07/29 by SM* From c0a1add2f61e516866c89d0e78d474f53a4f4974 Mon Sep 17 00:00:00 2001 From: Malik Samath <87662644+Kilamalik@users.noreply.github.com> Date: Wed, 16 Jul 2025 00:04:45 +0530 Subject: [PATCH 2/2] Refactor Debounce.md Code Made the code shorter while leaving the output same. --- content/built-in-examples/02.digital/Debounce/Debounce.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/built-in-examples/02.digital/Debounce/Debounce.md b/content/built-in-examples/02.digital/Debounce/Debounce.md index 730ddd0e99..5a054ac59c 100644 --- a/content/built-in-examples/02.digital/Debounce/Debounce.md +++ b/content/built-in-examples/02.digital/Debounce/Debounce.md @@ -46,4 +46,4 @@ You can find more basic tutorials in the [built-in examples](/built-in-examples) You can also explore the [language reference](https://www.arduino.cc/reference/en/), a detailed collection of the Arduino programming language. -*Last revision 2015/07/29 by SM* +*Last revision 2025/07/15 by MS*