Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Only delay after serial output in "Knock" #81

Merged
merged 1 commit into from
Sep 11, 2024

Conversation

per1234
Copy link
Contributor

@per1234 per1234 commented Sep 11, 2024

The "Knock" sketch polls the voltage output from a piezo disc to detect the vibrations associated with a knock.

The duration of vibrations from a single knock is likely to significantly exceed the unchecked polling interval. This would result in a single knock producing multiple detections, and thus multiple prints to Serial. In order to avoid this, a "debouncing" delay was added to the sketch.

Previously the delay was positioned in the outer scope of the loop function, which caused it to always affect the polling interval. This caused the sketch to miss the detection of knocks that produced vibrations that only occurred during that unnecessary delay. The problem is fixed by moving the delay inside the knock detection conditional block, so that debouncing is only done when actually needed.


Originally reported at arduino/docs-content#2159

The "Knock" sketch polls the voltage output from a piezo disc to detect the vibrations associated with a knock.

The duration of vibrations from a single knock is likely to significantly exceed the unchecked polling interval. This
would result in a single knock producing multiple detections, and thus multiple prints to Serial. In order to avoid
this, a "debouncing" delay was added to the sketch.

Previously the delay was positioned in the outer scope of the `loop` function, which caused it to always affect the
polling interval. This caused the sketch to miss the detection of knocks that produced vibrations that only occurred
during that unnecessary delay. The problem is fixed by moving the delay inside the knock detection conditional block, so
that debouncing is only done when actually needed.
@per1234 per1234 added type: imperfection Perceived defect in any part of project topic: code Related to content of the project itself labels Sep 11, 2024
@per1234 per1234 self-assigned this Sep 11, 2024
@per1234 per1234 merged commit 00b6086 into arduino:main Sep 11, 2024
17 checks passed
@per1234 per1234 deleted the knock-delay-position branch September 11, 2024 11:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
topic: code Related to content of the project itself type: imperfection Perceived defect in any part of project
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant