iot-protocols
Scannednpx machina-cli add skill beriberikix/zephyr-agent-skills/iot-protocols --openclawZephyr IoT Protocols
Implement production-ready IoT communication using industry-standard mesh, wide-area, and cloud protocols.
Core Workflows
1. OpenThread Mesh
Build robust, low-power mesh networks using the integrated OpenThread stack.
- Reference: openthread_integration.md
- Key Tools:
CONFIG_NET_L2_OPENTHREAD,otInstance, Thread Shell.
2. Matter-over-Thread
Create interoperable smart home devices using the Matter standard.
- Reference: matter_devices.md
- Key Tools: Matter Clusters, BLE Commissioning, ZAP tool.
3. Golioth Cloud SDK
Connect your fleet to the cloud for real-time state sync, telemetry, and OTA.
- Reference: golioth_sdk.md
- Key Tools: LightDB,
golioth_system_client, remote logging.
4. LoRaWAN Basics
Deploy long-range, low-power sensor networks.
- Reference: lorawan_basics.md
- Key Tools:
CONFIG_LORA, LoRa PHY, Adaptive Data Rate (ADR).
Quick Start (OpenThread Shell)
# Enable OpenThread with Shell
CONFIG_NET_L2_OPENTHREAD=y
CONFIG_OPENTHREAD_SHELL=y
# Join a network via Shell
ot dataset init new
ot dataset commit active
ot thread start
Professional Patterns (Ecosystem Design)
- Commissioning via BLE: Use the
connectivity-bleskill patterns to handle Matter or Thread commissioning for a seamless user experience. - Cloud-Mesh Gateways: Implement Thread Border Routers to bridge local mesh traffic to Golioth or other cloud backends.
- Battery Optimization: Use Sleepy End Device (SED) modes for Thread/LoRaWAN nodes to achieve multi-year battery life.
Resources
- References:
openthread_integration.md: Thread networking and Zephyr APIs.matter_devices.md: Smart home integration with Matter.golioth_sdk.md: Fleet management and real-time state sync.lorawan_basics.md: Long-range sensor networking.
Source
git clone https://github.com/beriberikix/zephyr-agent-skills/blob/main/skills/iot-protocols/SKILL.mdView on GitHub Overview
Enable production-ready IoT communications in Zephyr with OpenThread mesh, Matter-over-Thread devices, Golioth Cloud SDK patterns, and LoRaWAN basics. Useful for smart home devices, wide-area sensor networks, and cloud-integrated hardware fleets.
How This Skill Works
OpenThread-based mesh is enabled with CONFIG_NET_L2_OPENTHREAD and managed via otInstance and Thread Shell. Implement Matter-over-Thread using Matter Clusters, BLE commissioning, and the ZAP tool for interoperable devices. Connect fleets with the Golioth Cloud SDK (LightDB, golioth_system_client, remote logging) and enable LoRaWAN basics (CONFIG_LORA, LoRa PHY, ADR) for long-range sensing.
When to Use It
- Building a smart home device with Matter/Thread interoperability
- Deploying a wide-area sensor network with OpenThread mesh
- Rolling out a cloud-connected hardware fleet needing real-time telemetry and OTA via Golioth
- Developing LoRaWAN-based long-range sensors in rural or industrial settings
- Creating a cloud-integrated gateway or border router to bridge local mesh and cloud backends
Quick Start
- Step 1: Enable OpenThread and Shell in Zephyr: CONFIG_NET_L2_OPENTHREAD=y, CONFIG_OPENTHREAD_SHELL=y
- Step 2: Join a network via ot dataset init/commit and start threads: ot dataset init new; ot dataset commit active; ot thread start
- Step 3: Explore Matter-over-Thread, Golioth SDK, and LoRaWAN references (openthread_integration.md, matter_devices.md, golioth_sdk.md, lorawan_basics.md) to implement and test
Best Practices
- Commissioning via BLE patterns to simplify onboarding of Matter or Thread devices
- Use Thread Border Routers to connect local mesh networks to Golioth or cloud backends
- Optimize battery life with Sleepy End Device (SED) modes for Thread/LoRaWAN nodes
- Validate interoperability across OpenThread, Matter, and cloud SDK components with testing
- Secure OTA updates and remote logging through the Golioth SDK
Example Use Cases
- A Matter-enabled smart thermostat operating within a Thread mesh
- An OpenThread-based smart lighting hub bridging to Golioth for cloud management
- A LoRaWAN sensor network for agriculture with cloud telemetry and OTA updates
- An industrial asset tracker using a Thread Border Router to connect to the cloud
- A fleet of devices receiving firmware updates via the Golioth platform