Protocols
Matter
Smart home interoperability — Apple, Google, Amazon on the same boat
Official spec ↗Matter
The Matter protocol is the industry's bet to end smart-home fragmentation: a single application standard that works with Apple, Google, Amazon, and Samsung at the same time. The technical details follow.
Executive summary
- Matter is an open source application protocol for the smart homeSTermSmart homeA smart home automates lighting, climate, security and appliances through interconnected IoT devices.View profile, backed by Apple, Google, Amazon, Samsung, and 800+ manufacturers through the Connectivity Standards Alliance (CSA, formerly the Zigbee
ProtocolZigbeeVeteran 2.4 GHz mesh — backbone of many smart home hubsView profile Alliance).
- It runs over Thread, Wi-Fi, and Ethernet as transport layers. It is not a new radio — it reuses existing standards.
- Current version: Matter 1.4 (2025), adding support for batteries, solar panels, EVs, and energy management.
- Goal: that a Matter device pairs with any hub (Apple Home, Google Home, Alexa, SmartThings) without a vendor-specific cloud.
- Use cases: bulbs, sockets, thermostats, sensors, cameras, appliances, energy.
- Don't use it when: your device needs heavy streaming (Matter isn't for audio/video), you have legacy Zigbee 3.0 with no Matter bridge gateway, or your project is industrial (Matter is consumer smart home).
What Matter is
Matter (originally "Project CHIP" — Connected Home over IP) is an application standard that standardizes how smart-home devices communicate with each other and with hubs. The specification is maintained by the Connectivity Standards Alliance and published openly. At Plataforma IoT we cover every IoT protocol with the same level of technical detail. If you're starting from scratch, it's worth reading what IoT is first to understand why interoperability in the smart home is the challenge Matter solves.
Its mission: to resolve the chaos of today's smart home, where a Philips Hue bulb only talks to its Bridge, Apple Home doesn't detect Tuya devices, and every vendor demands its own app and cloud.
With Matter, a bulb carrying the Matter logo works in Apple Home, Google Home, Alexa Echo, and SmartThings — with no mandatory vendor cloud (it can run 100% locally).
Architecture: Matter over Thread/Wi-Fi/Ethernet
Matter is an application layer. It doesn't define its own radio. It reuses:
| Transport | Device type |
|---|---|
| **Thread** (IPv6 mesh radio, 2.4 GHz) | Low-power sensors, bulbs, battery sockets |
| **Wi-Fi** | Always-connected devices with adequate power (cameras, hubs, appliances) |
| **Ethernet** | Hubs and fixed devices |
For Thread devices to work, the home needs a Thread Border Router that bridges to the IP network. Apple HomePod mini/2, Apple TV 4K (2022+), Google Nest Hub (2nd gen), Amazon Echo (4th gen) and others include an integrated Thread Border Router.
Wi-Fi and Ethernet don't require a bridge — the Matter device joins the home network directly.
Why Thread + Matter
Thread is an IP mesh protocol over 802.15.4 (the same radio as Zigbee). Advantages over Zigbee:
- Native IPv6: each node has an IP, with no translation required.
- Self-healing mesh: Thread routers (mains-powered devices) connect to each other; end devices (battery) talk to the nearest router.
- No proprietary bridge: the Border Router is standardized, and any vendor can build one.
- Roaming: Thread devices can move between Border Routers.
Pairing: how a Matter device is paired
A "Multi-Admin" flow: a Matter device can be paired with several hubs simultaneously (Apple + Google + Alexa). Steps:
- The user scans the device's Matter QR code (or enters the 11-digit setup code).
- The hub's app (e.g. Apple Home) discovers the device via BLE (during onboarding).
- The hub configures the Thread credentials (network key) or Wi-Fi (SSID + password) as appropriate.
- The device joins the network and obtains operational certificates from the hub.
- Multi-admin: the user can invite other hubs (Google Home) to control the same device without physically re-pairing it.
All communication is encrypted with CASE (Certificate Authenticated Session Establishment) — TLS-like over IP transport.
Real-world use cases
| Category | Matter devices already available |
|---|---|
| Lighting | Philips Hue (via bridge), Nanoleaf, Eve, GE Cync, Wiz |
| Sockets | TP-Link Tapo, Aqara, Eve Energy, Belkin |
| Sensors | Aqara Climate, Eve Motion/Door/Window, Onvis |
| Thermostats | Google Nest, Ecobee, Aqara |
| Locks | Aqara, Yale, Schlage |
| Cameras | ❌ Matter 1.3 introduced camera casts — few vendors yet |
| Appliances | LG, Samsung Bespoke, GE Profile |
| EVs / energy | Matter 1.4 added support; first products in 2026 |
Pros and cons
Pros
- Real interoperability: a bulb works with Apple/Google/Alexa/Samsung without a vendor app.
- Local control: the hub can operate without internet (Apple Home and Google Home already do).
- Open spec: the spec is public, and the SDK (Matter SDK / CHIP) is open source.
- Backed by giants: Apple, Google, Amazon, Samsung. It's not a small project.
- Multi-admin: the device is controlled from several platforms at once.
- Encryption by default: CASE + GroupKeys, no insecure options.
Cons
- Adoption is still partial: many vendors keep pushing their own app. The "Matter just works" promise isn't 100% yet.
- Required Border Router: for Thread, you need a Border Router (not every hub is one).
- No streaming: Matter doesn't support audio/video streams — for cameras there are codec extensions, but limited ones.
- Bridge complexity: legacy Zigbee/Z-WaveZProtocolZ-WaveSub-GHz mesh for reliable home automationView profile devices need a Matter bridge to join, and the bridge must support Matter (the case with the Hue Bridge).
- Non-consumer use cases: industrial and complex commercial setups are not Matter's use case.
Matter vs Zigbee vs Thread vs Z-Wave
A common confusion. Clarification:
| Technology | Layer | Function |
|---|---|---|
| **Zigbee** | Physical + MAC + network + application (Zigbee Cluster Library) | A complete stack of its own, proprietary to a degree |
| **Z-Wave** | Complete stack, 868/900 MHz radio | Proprietary Silicon Labs smart home |
| **Thread** | Physical (802.15.4) + MAC + network (IPv6) | Mesh transport only, no app |
| **Matter** | Application (over IP) | App layer only, uses Thread/Wi-Fi/Ethernet as transport |
Summary: Zigbee and Z-Wave are full stacks. Thread is network only. Matter is application only. Matter + Thread are complementary; Matter + Wi-Fi too.
Does Matter replace Zigbee? Eventually yes, on the consumer side. In the meantime, Zigbee 3.0 remains robust and Zigbee↔Matter bridges exist (Hue Bridge, SmartThings Hub). For a detailed analysis of the Zigbee protocol, see its individual pillar. The Zigbee vs Matter vs Thread comparison will give you the side-by-side numbers to decide which stack to choose on your next project.
Getting started: dev with the Matter SDK
Hardware target
- ESP32-H2 / ESP32-C6 (Espressif): Thread + BLEBTermBluetooth Low Energy (BLE)Bluetooth Low Energy (BLE) is the low-power variant of Bluetooth, for sending small amounts of data intermittently with minimal battery. It dominates wearables and proximity. Maintained by the Bluetooth SIG.View profile radio, native Matter support. See the ESP32 profile for a comparison of variants.
- nRF52840 (Nordic Semiconductor
CompanyNordic SemiconductorSpecialist in low-power wireless connectivityView profile): the same radio, a broad Matter certification ecosystem - Silicon Labs EFR32MG24: industry leader for Matter
- A Linux machine (Raspberry Pi
CompanyRaspberry PiSingle-board computers and RP2040/RP2350 microcontrollersView profile): to run chip-tool and simulate a hub
SDK
git clone https://github.com/project-chip/connectedhomeip.git
cd connectedhomeip
git submodule update --init --recursive
./scripts/bootstrap.shHello World: a virtual bulb
# Build the example lighting-app for Linux
source scripts/activate.sh
./scripts/examples/gn_build_example.sh examples/lighting-app/linux/ out/lighting
# Run
./out/lighting/chip-lighting-appIn another terminal:
# chip-tool acts as the hub (commissioner)
./out/chip-tool/chip-tool pairing onnetwork-long 1 20202021 3840
# Turn on/off
./out/chip-tool/chip-tool onoff toggle 1 1You now have a virtual Matter bulb responding to commands. To flash it onto a real MCU (ESP32HardwareESP32Dual-core WiFi + BT/BLE SoC at €-tier priceView profile-C6 / nRF52840nTermnRF52840The nRF52840 is a Nordic Semiconductor SoC with a Cortex-M4F and ultra-low-power multiprotocol radio (BLE 5 and IEEE 802.15.4), a basis for many Matter/Thread devices.View profile), follow the SDK's platform-specific docs.
Primary sources
- Connectivity Standards Alliance — Matter (accessed: 2026-05)
- Matter SDK / connectedhomeip GitHub
- Matter spec 1.4 (registration required)
- Thread Group — the Thread spec
Frequently asked questions
What is Matter?+
Matter is an open source smart-home protocol that lets devices from different manufacturers work with each other (Apple Home, Google Home, Alexa, SmartThings) without a mandatory vendor cloud. It runs over Thread, Wi-Fi, or Ethernet.
Does Matter replace Zigbee?+
In the medium term, yes, on the consumer side. Zigbee 3.0 remains robust and many devices use it; Zigbee↔Matter bridges enable coexistence. New consumer devices push Matter by default.
Do I need a hub for Matter?+
Yes, you need a Matter controller (Apple HomePod/Apple TV, Google Nest Hub, Amazon Echo, SmartThings Hub). For Thread devices, the controller must also be a Thread Border Router.
Does Matter work without internet?+
Yes, within the local network. Apple Home and Google Home run Matter 100% locally. Remote commands when you're away from home do require the corresponding hub's cloud.
How many devices does a Matter network support?+
The spec says up to ~500 devices per fabric (a Matter network). In practice, current hubs recommend not exceeding ~100 devices per hub to maintain performance.
Are Apple Home, Google Home, and Alexa compatible?+
Yes, all three have supported Matter as controllers since 2022-2023. SmartThings too. If your device is Matter, all 4 hubs can control it simultaneously (multi-admin).
Compatible devices
- nRF52840, ESP32-H2/C6, Silicon Labs MG21/24
Related hardware
Companies
Related articles

What Is Industrial AI? A Practical Guide for 2026 Plants
What is industrial AI, and why is it suddenly everywhere? The short answer: it is artificial intelligence applied to physical operations. But the real answer li
May 28, 2026

SCADA IoT Platform in 2026: A Buyer's Evaluation Guide
A SCADA IoT platform replaced standalone HMIs in 2026. Here is what integrators and manufacturers should evaluate before choosing one.
Apr 15, 2026

What were the top 10 smart cities of 2025? Top 10
Global Smart City Market Overview Which were the best smart cities of 2025? The global smart city market is experiencing significant growth, driven by increasing urbanization, technological advancements, and a growing focus on sustainability and quality of life. In 2024, the glob
Apr 6, 2026

What Is NOT IoT? 7 Real Examples That Will Surprise You
Everyone talks about IoT. The fridge that orders milk, the lightbulb that turns on by itself, the fitness band that counts steps. It sounds futuristic, it sounds innovative. But most of what's sold as "IoT" simply isn't. And because the term "IoT" has always been confusing for ev
Mar 26, 2026

Did You Know IKEA Uses IoT? ZigBee and the Smart Home Revolution
IKEA uses ZigBee 3.0 for its smart home ecosystem. We explain the "invisible IoT", architecture, security, mesh networks and industrial parallels.
Sep 1, 2025

What Is FIWARE? The Latest in IoT
In the fast-paced world of the Internet of Things (IoT), interoperability and standardization are two of the biggest challenges facing developers, companies, and cities. Amid this complex ecosystem, FIWARE emerges—an open-source initiative that isn't exactly "new," but is a silen
Jun 24, 2025