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

doc: Document DULT motion detector feature #18138

Merged
merged 2 commits into from
Oct 30, 2024

Conversation

alstrzebonski
Copy link
Contributor

Jira: NCSDK-28984

@alstrzebonski alstrzebonski requested review from a team as code owners October 23, 2024 15:08
@github-actions github-actions bot added the doc-required PR must not be merged without tech writer approval. label Oct 23, 2024
@alstrzebonski alstrzebonski added doc only and removed doc-required PR must not be merged without tech writer approval. labels Oct 23, 2024
@alstrzebonski alstrzebonski added this to the 2.8.0 milestone Oct 23, 2024
@alstrzebonski alstrzebonski added the doc-required PR must not be merged without tech writer approval. label Oct 23, 2024
@NordicBuilder
Copy link
Contributor

NordicBuilder commented Oct 23, 2024

CI Information

To view the history of this post, clich the 'edited' button above
Build number: 7

Inputs:

Sources:

sdk-nrf: PR head: 9218c3d474cfd69a3938375a58951d8298dfae0e

more details

sdk-nrf:

PR head: 9218c3d474cfd69a3938375a58951d8298dfae0e
merge base: 4b32dada658b7c84a5a7b2e1d59a6a0eefb35419
target head (main): 857f1765ee652230fdfa97409a9989de1f815190
Diff

Github labels

Enabled Name Description
ci-disabled Disable the ci execution
ci-all-test Run all of ci, no test spec filtering will be done
ci-force-downstream Force execution of downstream even if twister fails
ci-run-twister Force run twister
ci-run-zephyr-twister Force run zephyr twister
List of changed files detected by CI (6)
doc
│  ├── nrf
│  │  ├── external_comp
│  │  │  ├── bt_fast_pair.rst
│  │  │  │ dult.rst
│  │  ├── libraries
│  │  │  ├── bluetooth_services
│  │  │  │  ├── services
│  │  │  │  │  │ fast_pair.rst
│  │  │  ├── others
│  │  │  │  │ dult.rst
│  │  │ links.txt
samples
│  ├── bluetooth
│  │  ├── fast_pair
│  │  │  ├── locator_tag
│  │  │  │  │ README.rst

Outputs:

Toolchain

Version:
Build docker image:

Test Spec & Results: ✅ Success; ❌ Failure; 🟠 Queued; 🟡 Progress; ◻️ Skipped; ⚠️ Quarantine

  • ◻️ Toolchain
  • ◻️ Build twister
  • ◻️ Integration tests
    • ◻️ test-fw-nrfconnect-ble_samples
Disabled integration tests
    • desktop52_verification
    • doc-internal
    • test_ble_nrf_config
    • test-fw-nrfconnect-apps
    • test-fw-nrfconnect-ble_mesh
    • test-fw-nrfconnect-boot
    • test-fw-nrfconnect-chip
    • test-fw-nrfconnect-fem
    • test-fw-nrfconnect-nfc
    • test-fw-nrfconnect-nrf-iot_cloud
    • test-fw-nrfconnect-nrf-iot_libmodem-nrf
    • test-fw-nrfconnect-nrf-iot_lwm2m
    • test-fw-nrfconnect-nrf-iot_mosh
    • test-fw-nrfconnect-nrf-iot_nrf_provisioning
    • test-fw-nrfconnect-nrf-iot_positioning
    • test-fw-nrfconnect-nrf-iot_samples
    • test-fw-nrfconnect-nrf-iot_thingy91
    • test-fw-nrfconnect-nrf-iot_zephyr_lwm2m
    • test-fw-nrfconnect-nrf_crypto
    • test-fw-nrfconnect-proprietary_esb
    • test-fw-nrfconnect-rpc
    • test-fw-nrfconnect-rs
    • test-fw-nrfconnect-tfm
    • test-fw-nrfconnect-thread
    • test-fw-nrfconnect-zigbee
    • test-low-level
    • test-sdk-audio
    • test-sdk-dfu
    • test-sdk-find-my
    • test-sdk-mcuboot
    • test-sdk-pmic-samples
    • test-sdk-sidewalk
    • test-sdk-wifi

Note: This message is automatically posted and updated by the CI

@NordicBuilder
Copy link
Contributor

You can find the documentation preview for this PR at this link. It will be updated about 10 minutes after the documentation build succeeds.

Note: This comment is automatically posted by the Documentation Publishing GitHub Action.


* The motion detector start request is indicated by the :c:member:`bt_fast_pair_fmdn_motion_detector_cb.start` callback.
After this callback is called, the motion detector events are polled periodically with the :c:member:`bt_fast_pair_fmdn_motion_detector_cb.period_expired` callback.
Typical action after the motion detector start request is to power up the accelerometer and start collecting motion data.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Typical action after the motion detector start request is to power up the accelerometer and start collecting motion data.
A typical action after the motion detector start request is to power up the accelerometer and start collecting motion data.

This callback is called at the end of each motion detector period.
The :c:member:`bt_fast_pair_fmdn_motion_detector_cb.start` callback indicates the beginning of the first motion detector period.
The next period is started as soon as the previous period expires.
The user should notify the DULT module if motion was detected in the previous period.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If this is something that requires user action (not something that happens in the sw), use active voice like:
"You need to notify the DULT module, if..."

The next period is started as soon as the previous period expires.
The user should notify the DULT module if motion was detected in the previous period.
The return value of this callback is used to pass this information.
The motion must be considered as detected if it fulfills the requirements defined in the `DULT Motion detector`_ section of the DULT documentation.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

must be or is considered?

Copy link
Contributor Author

@alstrzebonski alstrzebonski Oct 25, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it's the "must" requirement in the spec.

The motion must be considered as detected if it fulfills the requirements defined in the `DULT Motion detector`_ section of the DULT documentation.
* The motion detector stop request is indicated by the :c:member:`bt_fast_pair_fmdn_motion_detector_cb.stop` callback.
It concludes the motion detector activity that was started by the :c:member:`bt_fast_pair_fmdn_motion_detector_cb.start` callback.
Typical action after the motion detector stop request is to power down the accelerometer.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Typical action after the motion detector stop request is to power down the accelerometer.
A typical action after the motion detector stop request is to power down the accelerometer.

It concludes the motion detector activity that was started by the :c:member:`bt_fast_pair_fmdn_motion_detector_cb.start` callback.
Typical action after the motion detector stop request is to power down the accelerometer.

The motion detector is started by the DULT subsystem when the accessory is in the separated state for a sufficient amount of time.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we be more specific? What would be a sufficient time?

Copy link
Contributor Author

@alstrzebonski alstrzebonski Oct 25, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's a random value. The ranges are defined in the kconfigs. By default they are set to 8 hours (min) and 24 hours (max). It is described in the doc/nrf/libraries/others/dult.rst.

Maybe:
"The motion detector is started by the DULT subsystem when the accessory is in the separated state for an amount of time controlled by the :kconfig:option:CONFIG_DULT_MOTION_DETECTOR_SEPARATED_UT_TIMEOUT_PERIOD_MIN and :kconfig:option:CONFIG_DULT_MOTION_DETECTOR_SEPARATED_UT_TIMEOUT_PERIOD_MAX Kconfig options.". What do you think?

It is done to inform the non-owner that is moving the accessory, that the device might have been used to track the non-owner.
On DKs the simulated motion can be generated by button action.
On Thingy:53 the built-in accelerometer is used to detect the motion.
The motion detector is deactivated for :kconfig:option:`CONFIG_DULT_MOTION_DETECTOR_SEPARATED_UT_BACKOFF_PERIOD` after the :kconfig:option:`CONFIG_DULT_MOTION_DETECTOR_SEPARATED_UT_MAX_SOUND_COUNT` number of sounds has been played or after the motion has been detected and :kconfig:option:`CONFIG_DULT_MOTION_DETECTOR_SEPARATED_UT_ACTIVE_POLL_DURATION` amount of time has passed.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
The motion detector is deactivated for :kconfig:option:`CONFIG_DULT_MOTION_DETECTOR_SEPARATED_UT_BACKOFF_PERIOD` after the :kconfig:option:`CONFIG_DULT_MOTION_DETECTOR_SEPARATED_UT_MAX_SOUND_COUNT` number of sounds has been played or after the motion has been detected and :kconfig:option:`CONFIG_DULT_MOTION_DETECTOR_SEPARATED_UT_ACTIVE_POLL_DURATION` amount of time has passed.
The motion detector is deactivated for the period set in the :kconfig:option:`CONFIG_DULT_MOTION_DETECTOR_SEPARATED_UT_BACKOFF_PERIOD` Kconfig option after the :kconfig:option:`CONFIG_DULT_MOTION_DETECTOR_SEPARATED_UT_MAX_SOUND_COUNT` number of sounds has been played or after the motion has been detected and :kconfig:option:`CONFIG_DULT_MOTION_DETECTOR_SEPARATED_UT_ACTIVE_POLL_DURATION` amount of time has passed.

@@ -220,11 +232,13 @@ The user interface of the sample depends on the hardware platform you are using.
* Blinks at a 0.25 second interval if the DFU mode is enabled.

LED 2:
Indicates that the ringing action is in progress.
Depending on the ringing state:
Indicates that the ringing action is in progress, informs that the simulated motion has been detected, and informs that the motion detector is active.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Indicates that the ringing action is in progress, informs that the simulated motion has been detected, and informs that the motion detector is active.
Indicates that the ringing action is in progress, informing that the simulated motion has been detected and the motion detector is active.

* Lit if the device is ringing.
* Off if the device is not ringing.
* Blinks fast twice if the motion detected event appears.
* Lit if the device is ringing and motion detected event is not being signalized.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"signalized" sounds a bit odd, but cannot figure out what would be better.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe:

Suggested change
* Lit if the device is ringing and motion detected event is not being signalized.
* Lit if the device is ringing and no motion detection event is being indicated.

? We could also stick to "signal", but then I think it should be "signaled", instead of "signalized"

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Indicated sounds better. Thanks!

Comment on lines 265 to 266
Stops the ongoing ringing action on single press.
Generates simulated motion event on double press.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Stops the ongoing ringing action on single press.
Generates simulated motion event on double press.
Stops the ongoing ringing action on a single press.
Generates simulated motion event on a double press.

@@ -303,11 +318,13 @@ The user interface of the sample depends on the hardware platform you are using.
* Blinks at a 0.25 second interval if the DFU mode is enabled.

LED 1:
Indicates that the ringing action is in progress.
Depending on the ringing state:
Indicates that the ringing action is in progress, informs that the simulated motion has been detected, and informs that the motion detector is active.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same suggestions as above.


The motion detector is started by the DULT subsystem when the accessory is in the separated state for a sufficient amount of time.
When the motion is detected during the motion detector active period, the :c:member:`bt_fast_pair_fmdn_ring_cb.start_request` callback is called to request the ringing action.
It is done to inform the non-owner that is moving the accessory, that the device might have been used to track the non-owner.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is "non-owner" in this context?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the person that is not owning the accessory. It describes a case where the accessory owner could e.g. throw the accessory into other person's (non-owner) backpack to track him.

Copy link
Contributor

@annwoj annwoj Oct 25, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Noted, thanks! :) If it's the person then we should indicate it with "who". I'd suggest the following change to simplify the meaning, let me know if it affects it:

Suggested change
It is done to inform the non-owner that is moving the accessory, that the device might have been used to track the non-owner.
It is done to inform the non-owner who is moving the accessory that a device might be tracking their movements.

There are also other occurrences of this sentence


The motion detector is an optional feature of the DULT subsystem that can be integrated into the FMDN extension.
For more details about the feature, see the `DULT Motion detector`_ section of the DULT specification.
You can enable the :kconfig:option:`CONFIG_BT_FAST_PAIR_FMDN_DULT_MOTION_DETECTOR` Kconfig option to support the DULT motion detector functionality in the FMDN extension.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
You can enable the :kconfig:option:`CONFIG_BT_FAST_PAIR_FMDN_DULT_MOTION_DETECTOR` Kconfig option to support the DULT motion detector functionality in the FMDN extension.
To activate the DULT motion detector functionality in the FMDN extension, enable the :kconfig:option:`CONFIG_BT_FAST_PAIR_FMDN_DULT_MOTION_DETECTOR` Kconfig option.

It passes callbacks from the DULT motion detector module to the user application.

To register the motion detector callbacks, use the :c:func:`bt_fast_pair_fmdn_motion_detector_cb_register` function.
All motion detector callbacks defined in the :c:struct:`bt_fast_pair_fmdn_motion_detector_cb` structure are mandatory to register:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
All motion detector callbacks defined in the :c:struct:`bt_fast_pair_fmdn_motion_detector_cb` structure are mandatory to register:
You must register all motion detector callbacks defined in the :c:struct:`bt_fast_pair_fmdn_motion_detector_cb` structure:

If it's the user doing this (same for line 265). If not, plz disregard

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're right

The minimum duration for the DULT sound action is defined by the :c:macro:`DULT_SOUND_DURATION_MIN_MS`.
The upper layer determines the sound duration, and the duration must be greater than the value set in the :c:macro:`DULT_SOUND_DURATION_MIN_MS` macro.
The minimum duration for the DULT sound action originating from the Bluetooth ANOS is defined by the :c:macro:`DULT_SOUND_DURATION_BT_GATT_MIN_MS`.
The upper layer determines the sound duration, and, in case of the sound action originating from the Bluetooth ANOS, the duration must be greater than the value set in the :c:macro:`DULT_SOUND_DURATION_BT_GATT_MIN_MS` macro.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
The upper layer determines the sound duration, and, in case of the sound action originating from the Bluetooth ANOS, the duration must be greater than the value set in the :c:macro:`DULT_SOUND_DURATION_BT_GATT_MIN_MS` macro.
The upper layer determines the sound duration, and for sound action originating from the Bluetooth ANOS, the duration must exceed the value set in the :c:macro:`DULT_SOUND_DURATION_BT_GATT_MIN_MS` macro.

to simplify a bit

* Lit if the device is ringing.
* Off if the device is not ringing.
* Blinks fast twice if the motion detected event appears.
* Lit if the device is ringing and motion detected event is not being signalized.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe:

Suggested change
* Lit if the device is ringing and motion detected event is not being signalized.
* Lit if the device is ringing and no motion detection event is being indicated.

? We could also stick to "signal", but then I think it should be "signaled", instead of "signalized"

@alstrzebonski alstrzebonski requested a review from a team October 25, 2024 08:03
@alstrzebonski
Copy link
Contributor Author

Added testing steps for the motion detector feature in the separate commit.

@alstrzebonski alstrzebonski added the backport v2.8-branch auto-create a PR with same commits to v2.8-branch label Oct 25, 2024
@alstrzebonski
Copy link
Contributor Author

Fixed doc build issue.

doc/nrf/libraries/others/dult.rst Show resolved Hide resolved
doc/nrf/libraries/others/dult.rst Outdated Show resolved Hide resolved
doc/nrf/external_comp/dult.rst Outdated Show resolved Hide resolved
samples/bluetooth/fast_pair/locator_tag/README.rst Outdated Show resolved Hide resolved
samples/bluetooth/fast_pair/locator_tag/README.rst Outdated Show resolved Hide resolved
samples/bluetooth/fast_pair/locator_tag/README.rst Outdated Show resolved Hide resolved
samples/bluetooth/fast_pair/locator_tag/README.rst Outdated Show resolved Hide resolved
@alstrzebonski
Copy link
Contributor Author

Addressed review comments. Please rereview.

In this state, if motion is detected, the accessory starts the ringing action.
Played sounds help a non-owner identify an accessory that is moving with them, as the device might have been used to track the non-owner location by its owner.
On DKs, the simulated motion can be generated by button action.
On the Thingy0:53, the built-in accelerometer is used to detect the motion.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thingy:53

@kapi-no
Copy link
Contributor

kapi-no commented Oct 25, 2024

Please fix the documentation build so that we can view the updated documentation in the HTML-rendered form.

@alstrzebonski
Copy link
Contributor Author

Addressed review comments.

These values are defined in the DULT specification and should not be changed in the production code.
This option is disabled by default.

* :kconfig:option:`CONFIG_DULT_MOTION_DETECTOR_SEPARATED_UT_BACKOFF_PERIOD` - This option allows to configure the period in minutes to disable the motion detector if the accessory is in the separated state.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Take these three bullets back two steps. I guess they can be on the same level as the one above.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

They have prompt only if the CONFIG_DULT_MOTION_DETECTOR_TEST_MODE is enabled so I wanted to group them under this kconfig description.

@@ -455,6 +455,9 @@ Bluetooth Fast Pair samples
* An application versioning using the :file:`VERSION` file.
* The DFU support which can be enabled using the ``SB_CONFIG_APP_DFU`` sysbuild Kconfig option.
DFU is available for all supported targets except the ``debug`` configurations of :ref:`zephyr:nrf52dk_nrf52832` and :ref:`zephyr:nrf52833dk_nrf52833` due to size constraints.
* An application module for the DULT motion detector feature and the new UI for supported board targets to interact with this feature.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove the changelog from this PR and consult @divipillai . She will add the entries to her PR.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, I just wanted to get approves here and later move it to Divya's PR.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please remove DNM label when it's done, it could've been merged by accident.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

Motion detector mode
--------------------

In the provisioned state, the accessory can activate the motion detector mode from the DULT specification.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This sounds a bit strange, "activate the motion detector mode from the ... spec."
Should we rephrase?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe "... mode defined in the DULT specification"?

--------------------

In the provisioned state, the accessory can activate the motion detector mode from the DULT specification.
It happens when the accessory is separated from the owner for a sufficient amount of time (see :kconfig:option:`CONFIG_DULT_MOTION_DETECTOR_SEPARATED_UT_TIMEOUT_PERIOD_MIN` and :kconfig:option:`CONFIG_DULT_MOTION_DETECTOR_SEPARATED_UT_TIMEOUT_PERIOD_MAX` Kconfig options).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What happens exactly? The motion detector mode is activated?

It happens when the accessory is separated from the owner for a sufficient amount of time (see :kconfig:option:`CONFIG_DULT_MOTION_DETECTOR_SEPARATED_UT_TIMEOUT_PERIOD_MIN` and :kconfig:option:`CONFIG_DULT_MOTION_DETECTOR_SEPARATED_UT_TIMEOUT_PERIOD_MAX` Kconfig options).
In this state, if motion is detected, the accessory starts the ringing action.
Emitted sounds help to alert the non-owner that they are carrying an accessory that does not belong to them and might be used by the original owner to track their location.
On DKs, the simulated motion can be generated by button action.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
On DKs, the simulated motion can be generated by button action.
On DKs, you can generate the simulated motion by button action.

1. Open the Find My Device app.
#. Tap on your accessory in the list.
The accessory should have "Nearby" written under its name.
#. Tap on the gear icon next to the device name
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
#. Tap on the gear icon next to the device name
#. Tap the gear icon next to the device name

The other Android device can belong to anyone around you.
It is recommended to be in a crowded area.

#. Wait for 3 minutes (random value between the :kconfig:option:`CONFIG_DULT_MOTION_DETECTOR_SEPARATED_UT_TIMEOUT_PERIOD_MIN` and :kconfig:option:`CONFIG_DULT_MOTION_DETECTOR_SEPARATED_UT_TIMEOUT_PERIOD_MAX` Kconfig options) for the motion detector to be activated.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
#. Wait for 3 minutes (random value between the :kconfig:option:`CONFIG_DULT_MOTION_DETECTOR_SEPARATED_UT_TIMEOUT_PERIOD_MIN` and :kconfig:option:`CONFIG_DULT_MOTION_DETECTOR_SEPARATED_UT_TIMEOUT_PERIOD_MAX` Kconfig options) for the motion detector to be activated.
#. Wait for three minutes (random value between the :kconfig:option:`CONFIG_DULT_MOTION_DETECTOR_SEPARATED_UT_TIMEOUT_PERIOD_MIN` and :kconfig:option:`CONFIG_DULT_MOTION_DETECTOR_SEPARATED_UT_TIMEOUT_PERIOD_MAX` Kconfig options) for the motion detector to be activated.

#. Double-click **Button 1** to simulate the motion event.
#. Observe that **LED 1** blinks fast twice, which indicates that the motion detected event appears.
#. Observe that after up to 10 seconds, the ringing action starts for 1 second which is indicated by **LED 1** being lit.
#. Observe that **LED 1** goes back to blinking at a 0.25 second interval which indicates that the motion detector is active.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
#. Observe that **LED 1** goes back to blinking at a 0.25 second interval which indicates that the motion detector is active.
#. Observe that **LED 1** goes back to blinking at a 0.25 second interval, which indicates that the motion detector is active.

#. Observe that **LED 1** goes back to blinking at a 0.25 second interval which indicates that the motion detector is active.
#. Double-click **Button 1** to simulate the motion event.
#. Observe that **LED 1** blinks fast twice, which indicates that the motion detected event appears.
#. Observe that after up to 0.5 second, the ringing action starts which is indicated by **LED 1** being lit.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
#. Observe that after up to 0.5 second, the ringing action starts which is indicated by **LED 1** being lit.
#. Observe that after up to 0.5 second, the ringing action starts, which is indicated by **LED 1** being lit.

#. Observe that after up to 0.5 second, the ringing action starts which is indicated by **LED 1** being lit.
#. Double-click **Button 1** to simulate the motion event while the **LED 1** is still lit (ringing action is still in progress).
#. Observe that **LED 1** blinks fast twice, which indicates that the motion detected event appears.
#. Observe that after 0.5 second, of not ringing, the ringing action starts again for 1 second which is indicated by **LED 1** being lit.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
#. Observe that after 0.5 second, of not ringing, the ringing action starts again for 1 second which is indicated by **LED 1** being lit.
#. Observe that after 0.5 second, of not ringing, the ringing action starts again for one second, which is indicated by **LED 1** being lit.

@alstrzebonski
Copy link
Contributor Author

Addressed review comments. Please rereview.

Jira: NCSDK-28984

Signed-off-by: Aleksander Strzebonski <[email protected]>
Jira: NCSDK-28984

Signed-off-by: Aleksander Strzebonski <[email protected]>
@github-actions github-actions bot added the changelog-entry-required Update changelog before merge. Remove label if entry is not needed or already added. label Oct 29, 2024
@alstrzebonski alstrzebonski removed the DNM label Oct 29, 2024
@alstrzebonski
Copy link
Contributor Author

Removed changelog entry and added it here: #18192

@rlubos rlubos merged commit da3a123 into nrfconnect:main Oct 30, 2024
13 of 14 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport v2.8-branch auto-create a PR with same commits to v2.8-branch changelog-entry-required Update changelog before merge. Remove label if entry is not needed or already added. doc only doc-required PR must not be merged without tech writer approval.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants