-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Example: Matter On/Off Light #20456
Open
maikerlab
wants to merge
19
commits into
RIOT-OS:master
Choose a base branch
from
maikerlab:examples/rust-matter-light
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Example: Matter On/Off Light #20456
Conversation
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 was referenced Mar 11, 2024
The device now answers mDNS queries sent to [FF02::FB]:5353.
…oggle Board LED's Enabled 'nightly' feature for embassy-executor, so memory for tasks will be statically allocated at compile time. Commands On,Off,Toggle are now handled so all switches (LEDs) registered at SAUL will be turned on/off. Also did some refactoring and added config.toml for compatibility with rust-analyzer.
…(native and native64 target)
…cleanup Makefile deps
…er); get epoch using RTC
… random module from riot-wrappers with HWRNG
…supported, get seconds since UNIX epoch from ztimer_sec
…ecision; print passcode and discriminator with matter shell cmd
… maikerlab/rust-riot-wrappers (branch=with_matter)
…ges; delete "tests"
…anager impl. to riot-wrappers; add files for commissioning and dev_att data to constfs filesystem
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Contribution description
rust_target
andperiph_eth
feature (currently tested onnative
,native64
andnucleo-f429zi
)rs-matter
library, where the Matter protocol is (partly) implementedriot-os
to make it work with RIOTpsm
can be activated in Makefile withCARGO_OPTIONS += --features psm
to support storing/loading runtime configurations - NOTE: This would need to be implemented dependent of the target platform!TODO's
nucleo-f429zi
and works)src/dev_att.rs
riot_wrappers::vfs
module - but this is still read-onlyTesting procedure
examples/rust-matter-light
onnative64
Target:BOARD=native64 make all flash term
./chip-tool discover commissionables
12344321
):./chip-tool pairing code <node-id> <pairing-code>
Test supported functionality of commissioned device:
./chip-tool basicinformation read product-name <node-id> 0
./chip-tool onoff on <node-id> 1
./chip-tool onoff read on-off <node-id> 1
See CHIP-Tool Documentation for more supported commands.
Issues/PRs references
Resolves #19929.