-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Add: Seeed Studio MR60FDA2 mmWave Sensor document #4330
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
Merged
Merged
Changes from 8 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
2b754ff
Add: Seeed Studio MR60FDA2 mmWave Sensor document
limengdu e0423aa
Merge branch 'esphome:current' into mr60fda2
limengdu 4d7248f
Merge branch 'next' into mr60fda2
limengdu 2d30e2e
Fix: image size
limengdu 316b7c7
Fix: image size
limengdu a647dc7
Fixing a few things
limengdu 5312bfb
Fix
limengdu d8f980b
Merge branch 'next' into mr60fda2
jesserockz 7800a1a
Fix
limengdu 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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,126 @@ | ||
| Seeed Studio MR60FDA2 60GHz mmWave Fall Detection Sensor Kit | ||
| ============================================================ | ||
|
|
||
| .. seo:: | ||
| :description: Instructions for setting up Seeed Studio MR60FDA2 60GHz mmWave Fall Detection Sensor Kit. | ||
| :image: seeed_mr60fda2.jpg | ||
|
|
||
| Component/Hub | ||
| ------------- | ||
|
|
||
| The ``seeed_mr60fda2`` platform allows you to use Seeed Studio MR60FDA2 60GHz mmWave Fall Detection Sensor Kit with XIAO ESP32C6 (`Product Page <https://www.seeedstudio.com/MR60FDA2-60GHz-mmWave-Sensor-Fall-Detection-Module-p-5946.html>`__) with ESPHome. | ||
|
|
||
| The :ref:`UART <uart>` is required to be set up in your configuration for this sensor to work, ``parity`` and ``stop_bits`` **must be** respectively ``NONE`` and ``1``. | ||
| You can use the ESP32 software or hardware serial to use this MR60FDA2, its default baud rate is 115200. | ||
jesserockz marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| .. figure:: images/seeed_mr60fda2.jpg | ||
| :align: center | ||
| :width: 50.0% | ||
|
|
||
| Seeed Studio MR60FDA2 60GHz mmWave Fall Detection Sensor Kit with XIAO ESP32C6 | ||
|
|
||
|
|
||
| .. code-block:: yaml | ||
|
|
||
| # Example configuration entry | ||
| seeed_mr60fda2: | ||
|
|
||
| Configuration variables: | ||
| ************************ | ||
|
|
||
| - **uart_id** (*Optional*, :ref:`config-id`): Manually specify the ID of the :ref:`UART Component <uart>` if you want | ||
| to use multiple UART buses. | ||
| - **id** (*Optional*, :ref:`config-id`): Manually specify the ID for this :doc:`seeed_mr60fda2` component if you need multiple components. | ||
|
|
||
| Binary Sensor | ||
| ------------- | ||
|
|
||
| The ``seeed_mr60fda2`` binary sensor allows you to perform different measurements. | ||
jesserockz marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| .. code-block:: yaml | ||
|
|
||
| binary_sensor: | ||
| - platform: seeed_mr60fda2 | ||
| people_exist: | ||
| name: "Person Information" | ||
|
|
||
| Configuration variables: | ||
| ************************ | ||
|
|
||
| - **people_exist** (*Optional*): If true target detected, otherwise no target. | ||
jesserockz marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| All options from :ref:`Binary Sensor <config-binary_sensor>`. | ||
|
|
||
| Button | ||
| ------ | ||
|
|
||
| The ``seeed_mr60fda2`` button allows you to perform actions. | ||
|
|
||
| .. code-block:: yaml | ||
|
|
||
| button: | ||
| - platform: seeed_mr60fda2 | ||
| get_radar_parameters: | ||
| name: "Get Radar Parameters" | ||
| reset_radar: | ||
jesserockz marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| name: "Reset" | ||
|
|
||
| Configuration variables: | ||
| ************************ | ||
|
|
||
| - **reset_radar**: Restore all radar settings to factory parameters. All options from :ref:`Button <config-button>`. | ||
jesserockz marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| - **get_radar_parameters**: Get all the current setup parameters of the radar. | ||
| All options from :ref:`Button <config-button>`. | ||
|
|
||
|
|
||
| Text Sensor | ||
| ----------- | ||
|
|
||
| The ``seeed_mr60fda2`` text sensor allows you to get information about your device. | ||
jesserockz marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| .. code-block:: yaml | ||
|
|
||
| text_sensor: | ||
| - platform: seeed_mr60fda2 | ||
| is_fall: | ||
| name: "Falling Information" | ||
|
|
||
| Configuration variables: | ||
| ************************ | ||
|
|
||
| - **is_fall** (*Optional*): Fall status indication. | ||
| All options from :ref:`Text Sensor <config-text_sensor>`. | ||
jesserockz marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| Select | ||
| ----------- | ||
|
|
||
| The ``seeed_mr60fda2`` select allows you to control the configuration. | ||
jesserockz marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| .. code-block:: yaml | ||
|
|
||
| select: | ||
| - platform: seeed_mr60fda2 | ||
| install_height: | ||
| name: "Set Install Height" | ||
| height_threshold: | ||
| name: "Set Height Threshold" | ||
| sensitivity: | ||
| name: "Set Sensitivity" | ||
|
|
||
| Configuration variables: | ||
| ************************ | ||
|
|
||
| - **install_height**: Before using the MR60FDA2, please select the installation height of the radar according to the actual situation in order to obtain accurate identification results. The default is 3m. | ||
| All options from :ref:`Select <config-select>`. | ||
| - **height_threshold**: To accurately distinguish between a person falling and sitting still in this area, you need to set the trigger height that triggers fall detection. This height refers to the distance between the person and the ground at the time of the fall. The default is 0.6m. | ||
| All options from :ref:`Select <config-select>`. | ||
| - **sensitivity**: Fall sensitivity factor. Defaults to 1 with a range of 1-3, 3 = high and 1 = low. | ||
| All options from :ref:`Select <config-select>`. | ||
|
|
||
| See Also | ||
| -------- | ||
|
|
||
| - `Official Using Documents for Seeed Studio MR60FDA2 60GHz mmWave Fall Detection Sensor Kit with XIAO ESP32C6 <https://wiki.seeedstudio.com/getting_started_with_mr60fda2_mmwave_kit/>`_ | ||
| - `Product Detail Page for Seeed Studio MR60FDA2 60GHz mmWave Fall Detection Sensor Kit with XIAO ESP32C6 <https://www.seeedstudio.com/MR60FDA2-60GHz-mmWave-Sensor-Fall-Detection-Module-p-5946.html>`_ | ||
| - `Source of inspiration for implementation <https://github.com/limengdu/MR60FDA2_ESPHome_external_components>`_ | ||
| - :apiref:`seeed_mr60fda2/seeed_mr60fda2.h` | ||
| - :ghedit:`Edit` | ||
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
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.
Uh oh!
There was an error while loading. Please reload this page.