TL;DR:
- Matter is an open, royalty-free IoT standard from the Connectivity Standards Alliance (CSA) that enables interoperability between Apple Home, Google Home, Amazon Alexa, Samsung SmartThings, and Home Assistant — one device works with all of them
- Matter devices communicate over IP (Wi-Fi, Ethernet, or Thread mesh) and are identified by a cryptographic device attestation certificate rather than cloud accounts
- Thread is the low-power mesh networking protocol that runs under Matter for battery-operated sensors and actuators — it requires a Thread border router (built into Apple TV 4K, HomePod mini, Nest Hub Gen 2, and others)
- Matter 1.3 (2024) added energy monitoring, water and wastewater devices, and EV charging management; Matter 1.4 (2025) added robotic vacuum and water heater support
For most of the past decade, the smart home market fragmented into incompatible islands. A Philips Hue bulb worked with Apple Home but needed specific setup for Google Home. A Sonos speaker would work with some assistants but not others. Zigbee devices needed Zigbee coordinators. Z-Wave devices needed Z-Wave hubs. The result was a market where interoperability required platform lock-in — you chose your ecosystem and your devices matched it.
Matter is the attempt to end that. Backed by Apple, Google, Amazon, Samsung, and over 700 other member companies of the Connectivity Standards Alliance, it specifies a common application layer that runs over IP-based transport, uses cryptographic device authentication, and allows a single device to work simultaneously with multiple ecosystems.
Whether you’re building commercial IoT infrastructure or deploying smart home equipment at scale, Matter is now the standard worth understanding.
What Matter Actually Is
Matter is an application layer protocol — it defines how devices describe their capabilities, how controllers issue commands, and how devices report state. It runs over IP, which means it runs over Wi-Fi, Ethernet, or Thread (a low-power IPv6 mesh network). The transport choice is per-device based on power and connectivity requirements.
The key architectural concepts:
Nodes: A Matter device is a Node. A node has a unique device identity backed by a cryptographic certificate issued at manufacturing time by the manufacturer’s attestation certificate authority.
Fabrics: A Matter Fabric is a shared network context — essentially, the group of controllers and devices that trust each other. A device can join multiple fabrics simultaneously (multi-fabric capability), which is why an Eve door sensor can appear in both Apple Home and Home Assistant at the same time.
Endpoints: Each node can have multiple Endpoints representing logical devices. A smart plug with energy monitoring has one Endpoint for the outlet switch, one for the energy sensor. A multi-zone controller has an Endpoint per zone.
Clusters: Clusters are the functional building blocks — On/Off Cluster, Level Control Cluster, Temperature Measurement Cluster, Thermostat Cluster. A device declares which clusters it supports, and controllers use standardised cluster commands to interact with it.
Commissioning: Pairing a Matter device to a fabric uses a QR code or manual pairing code (displayed on the device or in its packaging) scanned by a companion app. The pairing process transfers a fabric credential to the device, establishing trust without requiring a cloud account.
Thread: The Mesh Layer for Battery-Powered Devices
Wi-Fi Matter devices (smart plugs, light fixtures, panels) connect directly to your Wi-Fi router. But battery-operated sensors and actuators can’t afford Wi-Fi’s power consumption.
Thread fills this role. It’s an IPv6 mesh networking protocol designed for low-power devices: motion sensors, door/window contacts, temperature sensors, occupancy detectors. Thread operates in the 2.4 GHz band (same as Zigbee and certain Wi-Fi channels) and forms a self-healing mesh — devices route traffic for each other, improving coverage and reliability without adding infrastructure.
Thread Border Routers bridge the Thread mesh to your IP network, allowing Thread devices to participate in the Matter fabric alongside Wi-Fi devices. Major Border Routers:
- Apple TV 4K (any generation)
- Apple HomePod mini / HomePod 2
- Google Nest Hub Gen 2
- Google Nest WiFi Pro
- Amazon Echo Hub
- Eero Pro 6E and later
- Several Nanoleaf and Eve devices
If you have any of the above on your network, you already have Thread border router capability, and Thread Matter devices will commission and operate without any additional hub.
The practical significance: Thread Matter devices can have battery lifetimes measured in years (comparable to Zigbee/Z-Wave sensors) while participating in the same fabric as Wi-Fi devices. A temperature sensor reporting every minute over Thread can run 2–4 years on a single CR2032.
Multi-Admin: One Device, Multiple Ecosystems
The feature that makes Matter genuinely different from previous smart home standards is multi-admin commissioning — the ability for a device to simultaneously belong to multiple fabrics and be controlled by multiple ecosystems.
A Matter door sensor commissioned into Apple Home can also be added to Home Assistant. Both platforms see the same device state in real time. Automations in either platform work correctly. If Apple Home’s servers go offline, Home Assistant still controls the device (for local-capable implementations).
The commissioning process for a second fabric uses a process called Open Commissioning Window, where the device temporarily opens a commissioning window (authorised by the first fabric’s controller) to accept a second commissioner’s credentials.
From a consumer perspective this means: buy one compatible device, add it to whatever platform you’re using, switch platforms later without replacing hardware. For enterprises deploying IoT at scale, it reduces vendor lock-in for the sensing and actuation layer.
What Matter Covers in 2026
Matter 1.0 (2022) covered the foundational device types: lighting, plugs, switches, thermostats, window blinds, door locks, HVAC equipment, and home security sensors.
Subsequent releases have expanded scope:
Matter 1.2 (2023): Refrigerators, room air conditioners, dishwashers, laundry washers and dryers, robotic vacuum cleaners, smoke/CO alarms, air quality sensors, air purifiers.
Matter 1.3 (2024): EV chargers, energy meter endpoints for monitoring home energy consumption, water valves (for smart irrigation and leak prevention), water heaters (basic control).
Matter 1.4 (2025): Extended water heater control (scheduling, tariff optimisation), advanced robotic vacuum capabilities, enhanced energy management for grid-interactive devices.
The energy and EV charging additions in 1.3 are particularly significant for commercial applications — they provide the interoperability layer for Demand Response programmes and time-of-use tariff management across heterogeneous device fleets.
Commercial and Light Industrial Use
Matter’s design focus was residential, but the commercial smart building market has been watching carefully. Several aspects make Matter relevant beyond home installation:
Access control integration: Matter 1.2 includes a credential-based door lock model that maps to commercial access scenarios. The cryptographic device attestation model is more robust than many proprietary commercial access systems.
Energy monitoring at scale: Matter’s energy cluster endpoints provide standardised reporting for electricity consumption, which aligns with commercial building energy management requirements. Matter-compatible smart plugs and panel monitoring devices can feed into Energy Management Systems without proprietary integration.
Retrofit lighting controls: Commercial buildings with existing Zigbee lighting infrastructure can adopt Matter Zigbee bridges to bring legacy devices into a Matter fabric without hardware replacement.
Facility sensor networks: Thread-based Matter sensors (temperature, humidity, occupancy, air quality) can build out facility monitoring infrastructure using the same ecosystem infrastructure as commercial hub hardware (eero, Nest Hub, etc.) without purpose-built industrial gateways.
The limitations for true industrial environments: Matter 1.x does not cover industrial protocols (Modbus, PROFIBUS, PROFINET, OPC-UA) and the device certification focus is residential. For IIoT deployments, Matter currently sits alongside rather than replacing purpose-built industrial IoT stacks.
Matter and Home Assistant
Home Assistant has emerged as the primary open-source Matter controller, with a Matter Server integration that runs as a Container Add-on and provides full Matter fabric participation. For self-hosted automation, Home Assistant + Thread border router hardware (the Skyconnect or Yellow boards include both Zigbee and Thread radios) is the most capable open ecosystem.
Home Assistant’s Matter implementation supports commissioning new devices, multi-admin sharing from other ecosystems, and local control — commands are processed locally without cloud round-trips for Matter devices that support it.
Building with Matter: Developer Perspective
For developers building Matter-compatible devices, the Connectivity Standards Alliance provides the Matter SDK (formerly Project CHIP) — an open-source C++ implementation of the Matter stack available on GitHub.
# Clone the Matter SDK
git clone --recurse-submodules https://github.com/project-chip/connectedhomeip
# For ESP32 targets
./scripts/checkout_submodules.py --shallow --platform esp32
source scripts/activate.sh
ESP32 and ESP32-C3/C6 are the most common microcontrollers used for Matter device development. Nordic Semiconductor’s nRF52840 and nRF5340 are used for Thread-primary devices. Silicon Labs EFR32 is common in commercial smart building applications.
The development certification process requires:
- Building the device against the Matter SDK with a test Product Attestation Intermediate (PAI) certificate
- Functional certification testing through one of the CSA-authorised test houses
- Product attestation certificate issuance from a CSA-approved PAA (Product Attestation Authority)
Commercial device certification timelines are typically 8–16 weeks and costs vary by complexity. The CSA has established a streamlined path for simpler device categories (sensors, plugs) that reduces cost and timeline.
Choosing Matter Devices
When evaluating Matter devices for deployment, the key questions:
What transport? Wi-Fi Matter devices are simpler to deploy but draw more power. Thread Matter devices need a border router but have much lower power requirements.
Which hubs as border routers? For Thread-primary deployments, confirm you have compatible border router hardware. A pure Apple ecosystem deployment may use HomePod mini; a mixed deployment should use border routers that publish to multiple fabrics (Nest Hub Gen 2, eero Pro).
Which Matter version? Check that the device supports the Matter version clusters you need. Energy monitoring requires Matter 1.3+ endpoints; basic lighting works from Matter 1.0.
Local vs cloud control? Matter’s design emphasises local control, but some manufacturers implement cloud-reliant features within the Matter framework. For reliability, prefer devices certified for local Matter control without cloud dependency for core functions.
The standardisation that Matter provides is real. The fragmentation of the smart home market is materially improved compared to 2021. For IoT deployments where interoperability and long-term vendor independence matter — commercial buildings, facilities, multi-platform enterprise environments — Matter has reached the maturity level where it should be the default protocol choice for new device adoption.