-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
samples: matter: Added custom events to the Matter MS sample #21066
Conversation
CI InformationTo view the history of this post, clich the 'edited' button above Inputs:Sources:sdk-nrf: PR head: bd80505cbe906faa4121d73987beb16c676dbbf5 more detailssdk-nrf:
Github labels
List of changed files detected by CI (13)
Outputs:ToolchainVersion: 4ffa2202d5 Test Spec & Results: ✅ Success; ❌ Failure; 🟠 Queued; 🟡 Progress; ◻️ Skipped;
|
You can find the documentation preview for this PR here. Preview links for modified nRF Connect SDK documents: https://ncsdoc.z6.web.core.windows.net/PR-21066/nrf/protocols/matter/getting_started/custom_clusters.html |
@@ -153,6 +153,8 @@ See the description of each element in the following tabs: | |||
* ``source`` - Specifies whether the event originates from the client or server. | |||
* ``code`` - A unique identifier for the event within the cluster. | |||
* ``name`` - The name of the event. | |||
* ``priority`` - The priority of the event. | |||
The valid values are 'debug', 'info', and 'critical'. |
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.
The valid values are 'debug', 'info', and 'critical'. | |
The valid values are 'debug', 'info', and 'critical'. |
Should these be between double backticks. Or is that single quote character needed here?
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.
I think that double backticks should be good, thanks for the catch.
Added custom events to NordicDevKit and Basic Information clusters: * UserButtonChanged emitted on UserButton state change * RandomNumberChanged emitted on RandomNumber change Updated the documentation to contain steps for the events. Additionally fixed ids for attributes and commands that were not compatible with the spec and fixed few minor issues in the documentation. Signed-off-by: Kamil Kasperczyk <kamil.kasperczyk@nordicsemi.no>
fbc834e
to
bd80505
Compare
|
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.
Please consider aligning clang format settings.
Added custom events to NordicDevKit and Basic Information clusters:
Updated the documentation to contain steps for the events.
Additionally fixed ids for attributes and commands that were not compatible with the spec and fixed few minor issues in the documentation.