-
Notifications
You must be signed in to change notification settings - Fork 6
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
added documentation for ultrasonic sensor / fixes issue w other files #205
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
78 changes: 78 additions & 0 deletions
78
...ronaut-utils/src/docs/asciidoc/components/inputComponents/ultraSonicSensor.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
==== Ultrasonic Sensor | ||
[.text-right] | ||
https://github.com/oss-slu/Pi4Micronaut/edit/develop/micronautpi4j-utils/src/docs/asciidoc/components/inputComponents/ultraSonicSensor.adoc[Improve this doc] | ||
|
||
===== Overview | ||
This document provides details of the Ultrasonic Sensor circuit, | ||
including its components, assembly instructions, and functionality. | ||
|
||
===== Components | ||
. HC SR04 | ||
. T-Extension Board | ||
. Breadboard | ||
. Jumper wires | ||
. Power source | ||
|
||
===== Circuit Diagram | ||
Model: | ||
|
||
image::https://docs.sunfounder.com/projects/davinci-kit/en/latest/_images/image220.png[] | ||
|
||
|
||
|
||
Circuit Diagram: | ||
|
||
image::https://docs.sunfounder.com/projects/davinci-kit/en/latest/_images/image329.png[] | ||
|
||
===== Functionality | ||
The Ultrasonic Sensor uses sound waves to calculate the distance from itself to the surface it is pointed at. | ||
The resulting measurement is accurate within 3mm and has a stable signal within 5m of the sensor, | ||
gradually weakening until fully it fully disappears at 7m. | ||
|
||
===== Troubleshooting | ||
. Distance measurements not showing: Check all connections, ensure the sensor is placed correctly, | ||
and check the power source. | ||
|
||
===== YAML Pin Order | ||
The order for declaring the Trigger Pin for the Ultrasonic Sensor is as follows: | ||
|
||
[source, yaml] | ||
---- | ||
digital-input: | ||
ultra-sonic-trig: | ||
address: 23 | ||
---- | ||
So the Trigger Pin would be connected to GPIO 23. | ||
|
||
The order for declaring the Echo Pin for the Ultrasonic Sensor is as follows: | ||
|
||
[source, yaml] | ||
---- | ||
digital-output: | ||
ultra-sonic-echo: | ||
address: 24 | ||
---- | ||
So the Echo Pin would be connected to GPIO 24. | ||
|
||
===== Constructors | ||
|
||
[source, java] | ||
---- | ||
include::../../../../../../pi4micronaut-utils/src/main/java/com/opensourcewithslu/inputDevices/UltraSonicSensorHelper.java[tag=const] | ||
---- | ||
|
||
===== Methods | ||
|
||
[source, java] | ||
---- | ||
include::../../../../../../pi4micronaut-utils/src/main/java/com/opensourcewithslu/inputDevices/UltraSonicSensorHelper.java[tags=method] | ||
---- | ||
|
||
===== An Example Controller | ||
|
||
====== This controller uses the push button to turn an LED on and off | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is not related to ultrasonic |
||
|
||
[source, java] | ||
---- | ||
include::../../../../../../components/src/main/java/com/opensourcewithslu/components/controllers/UltraSonicSensorController.java[tag=ex] | ||
---- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sentence is not clear
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also include the info about trigger and echo channels on the ultrasonic sensor