From 07d4713f554b2ae2ccf4871f6be0590c129342b0 Mon Sep 17 00:00:00 2001 From: Luke Hoersten Date: Tue, 28 Jul 2026 16:58:20 -0500 Subject: Implement mattertimesync: one-shot Matter time synchronization CLI A standalone CLI Matter controller that joins Matter devices as a secondary administrator (multi-admin) and sets their clocks via the standard Time Synchronization cluster. Built on rs-matter 0.2.0, the official CSA Rust Matter stack: its PASE/CASE initiators, Commissioner flow, builtin mDNS, and generated cluster clients. One-shot runs from a systemd timer; there is no daemon. Hardware-validated end to end (commission, inspect, sync, decommission) against an IKEA ALPSTUGA air quality monitor over Thread, commissioned alongside Apple Home. Design and operation are documented in the README. 34 unit tests, clippy clean. --- examples/config.example.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 examples/config.example.json (limited to 'examples/config.example.json') diff --git a/examples/config.example.json b/examples/config.example.json new file mode 100644 index 0000000..831630c --- /dev/null +++ b/examples/config.example.json @@ -0,0 +1,6 @@ +{ + "storagePath": "/var/lib/mattertimesync", + "timezone": "America/Chicago", + "logLevel": "info", + "fabricLabel": "Rust Matter Time Sync" +} -- cgit v1.2.3