Electronics Guide

Zigbee and Mesh Networks

Zigbee has established itself as a leading wireless mesh networking technology for home automation, building control, and sensor networks. Built upon the IEEE 802.15.4 physical layer, Zigbee adds mesh networking, application profiles, and security features that enable self-organizing networks of low-power devices. The mesh architecture allows devices to relay messages for one another, extending network coverage and providing resilience against individual device failures.

Understanding Zigbee requires knowledge of both the underlying IEEE 802.15.4 radio technology and the Zigbee-specific network and application layers. This guide covers the complete protocol stack, mesh networking principles, security architecture, and the evolving landscape that now includes Thread and Matter as complementary technologies. Zigbee is governed by the Connectivity Standards Alliance (CSA), the standards body formerly known as the Zigbee Alliance until its rebranding in May 2021.

IEEE 802.15.4 Foundation

Physical Layer

IEEE 802.15.4 defines the physical layer used by Zigbee and other protocols including Thread, 6LoWPAN, and various proprietary systems. The standard specifies radio operation at 2.4 GHz (worldwide), 902 to 928 MHz (the Americas), and 868 MHz (Europe), with different data rates and channel structures for each band. The original sub-GHz physical layers used binary phase shift keying: a single channel at 20 kbps in the 868 MHz band and ten channels at 40 kbps in the 915 MHz band. Later revisions of the standard added optional O-QPSK modes that raise those rates to 100 kbps and 250 kbps respectively.

The 2.4 GHz band, most commonly used, provides 16 channels (numbered 11-26) with 5 MHz spacing and 2 MHz channel bandwidth. Direct Sequence Spread Spectrum (DSSS) modulation with Offset Quadrature Phase Shift Keying (O-QPSK) achieves 250 kbps data rate. This rate balances throughput against power consumption and range.

Transmit power up to 0 dBm is typical, yielding ranges of roughly 10 to 100 meters depending on environment. Higher-power variants (often +10 to +20 dBm) extend range for industrial and outdoor applications. The IEEE 802.15.4 standard specifies a minimum receiver sensitivity of -85 dBm for the 2.4 GHz O-QPSK PHY, but practical transceivers comfortably exceed this: typical modern radios achieve roughly -95 to -100 dBm, enabling reliable operation at low signal levels.

MAC Layer

The 802.15.4 MAC layer manages channel access, frame handling, and network formation. CSMA-CA (Carrier Sense Multiple Access with Collision Avoidance) provides contention-based channel access: devices listen before transmitting and back off if the channel is busy.

Optional beacon-enabled operation provides guaranteed time slots (GTS) for time-critical communication. Most Zigbee deployments use non-beacon mode for simplicity and flexibility, relying on CSMA-CA for all transmissions.

Frame types include data frames, acknowledgment frames, beacon frames, and MAC command frames. Short (16-bit) and extended (64-bit) addressing modes accommodate different network sizes. Acknowledgments confirm frame reception, enabling reliable delivery through retransmission.

Frame size shapes everything built above the MAC. The maximum physical layer packet is 127 bytes, and after MAC, network, and application support headers plus the security fields, roughly 50 to 90 bytes remain for application payload, depending on addressing mode and which keys are applied. The application support sublayer offers fragmentation for larger transfers, but Zigbee is designed around short messages such as commands, attribute reports, and sensor readings. Per-hop overhead, acknowledgments, and CSMA-CA backoff mean that usable application throughput is only a fraction of the 250 kbps raw rate, and it falls further with each additional hop.

Network Topologies

IEEE 802.15.4 supports star and peer-to-peer topologies. In star topology, all communication passes through a central coordinator. Peer-to-peer topology allows direct communication between any devices, enabling mesh networking when combined with appropriate routing protocols.

The PAN coordinator establishes and manages the network, assigning addresses and managing network parameters. Non-coordinator devices associate with the network through the coordinator or, in peer-to-peer networks, through any already-associated device.

Zigbee Protocol Stack

Network Layer

The Zigbee network layer (NWK) handles mesh routing, network formation, and device management. Building upon 802.15.4, the NWK layer adds the addressing and routing capabilities that enable mesh networking over the point-to-point links provided by the MAC layer.

Devices are identified by 16-bit short network addresses, with 0x0000 reserved for the coordinator. Zigbee PRO, the stack profile underlying Zigbee 3.0, assigns these addresses stochastically: a joining device receives a randomly chosen address, and the network detects and resolves the occasional collision. The earlier Zigbee 2006 and 2007 stack profiles instead used the distributed Cskip scheme, in which each parent handed out a deterministic block of addresses derived from its depth in the tree. The network layer maintains routing tables and neighbor tables used for packet forwarding.

Network discovery enables devices to find existing networks. Association procedures add new devices to networks. Leave procedures remove devices. Network layer security encrypts traffic between network nodes.

Application Layer

The Zigbee application layer comprises the Application Support Sublayer (APS), the Zigbee Device Object (ZDO), and application objects implementing specific profiles. This structure separates device management, cluster library functions, and manufacturer-specific functionality.

The Application Support Sublayer provides data and management services to application objects. Key functions include binding (establishing application-level relationships between devices), group management, and end-to-end acknowledgments for reliable delivery.

Addressing at this layer offers three delivery modes with different costs. Unicast to a bound endpoint is the default and is acknowledged. Group addressing lets one command reach an arbitrary set of endpoints, which is how a single wall switch turns off every lamp in a room without sending one message per lamp. Broadcast reaches every device but is expensive, because each router rebroadcasts and retains the message for a passive acknowledgment period; a network that broadcasts freely will congest itself, so mature designs prefer groups and binding over broadcast.

The Zigbee Device Object handles device and service discovery, binding management, and security management. ZDO endpoints enable queries about device capabilities, clusters supported, and network relationships.

Application objects implement device functionality using the Zigbee Cluster Library (ZCL). Standard clusters define interoperable interfaces for common functions like on/off control, level control, temperature measurement, and many others.

Zigbee Cluster Library

The Zigbee Cluster Library defines standard data models and commands for common device types. Clusters group related attributes and commands: the On/Off cluster has an on/off attribute plus toggle, on, and off commands. The Level Control cluster manages dimming with attributes for current level and transition time.

Using standard clusters enables interoperability between devices from different manufacturers. A Zigbee light from one vendor can be controlled by a switch from another because both implement the same cluster interfaces. This standardization is fundamental to the Zigbee ecosystem's multi-vendor interoperability.

Clusters are designated as server (typically the controlled device) or client (typically the controller). A light implements the On/Off cluster server; a switch implements the client. Binding connects specific client and server endpoints.

Mesh Networking

Device Types

Zigbee networks include three device types with distinct capabilities. Coordinators initiate networks, manage network parameters, and route messages. A network has at most one coordinator, and in the usual configuration that coordinator also serves as the trust center.

Zigbee 3.0 recognizes two security models, and they change the coordinator's role. A centralized security network has a coordinator that also acts as trust center, holds the network key, and authorizes every join. A distributed security network is formed by a router instead, has no coordinator and no trust center, and simply shares one network key among its members; it suits small standalone groups such as a remote control paired with a few lamps.

Routers extend network coverage by forwarding messages and can allow new devices to join. A router is mains-powered in practice, because it must keep its receiver on to relay traffic at any moment. Multiple routers create the mesh structure that provides coverage and redundancy, which is why mains-powered devices such as smart bulbs and plug-in outlets quietly do most of the work of holding a home network together.

End devices communicate only through their parent router or coordinator, cannot relay messages, and can sleep to conserve power. Battery-powered sensors and actuators typically operate as end devices, waking periodically to check for messages and transmit data.

Because a sleeping end device cannot receive on demand, its parent buffers downstream messages and releases them when the child polls. The poll interval sets a direct trade-off: a short interval gives responsive control at the cost of battery life, while a long interval favors longevity and suits devices that report rather than react. Each router also supports only a limited number of children, an implementation-dependent figure usually on the order of tens rather than hundreds, so large installations must distribute end devices across parents instead of concentrating them near one router.

Routing Algorithms

Tree routing, used by the older stack profiles, follows the address hierarchy established during joining: messages ascend to a common ancestor and then descend to the destination. It requires no routing tables but frequently chooses paths far longer than the radio topology allows. Because stochastic addressing severs the relationship between a device's address and its position in the tree, Zigbee PRO abandoned tree routing in favor of the three mechanisms described below.

Mesh routing, based on a simplified variant of AODV (Ad-hoc On-Demand Distance Vector), discovers routes when needed. A source broadcasts a route request that propagates outward; each forwarding router accumulates a path cost derived from link quality. The destination selects the lowest-cost path and returns a unicast route reply along it. Discovered routes are stored in routing tables and reused until they fail or expire.

Many-to-one routing optimizes traffic patterns where many devices send to a central point (like a gateway). A concentrator device advertises itself as a destination, and other devices establish routes toward it. This approach reduces route discovery traffic for common hub-and-spoke patterns.

Source routing enables the originating device to specify the complete path. Combined with many-to-one routing, this enables efficient bidirectional communication between concentrators and end devices without route discovery overhead.

Self-Healing

Mesh networks self-heal by finding alternative routes when links fail. If a router becomes unavailable, neighboring devices detect the failure (through missing acknowledgments or link quality degradation) and route around it. This resilience is a key advantage of mesh topology.

Route repair mechanisms include local repair (finding an alternate next hop) and route rediscovery (establishing entirely new routes). The network adapts to device additions, removals, and relocations without manual reconfiguration.

Self-healing has limits: if network partitioning isolates groups of devices from the coordinator, affected devices lose connectivity until paths are restored. Network design should ensure sufficient router density and connectivity to maintain paths under expected failure scenarios.

Network Formation

The coordinator initiates network formation by selecting a PAN ID, channel, and network parameters. The coordinator performs an energy scan to identify clear channels and an active scan to detect existing networks, then selects operating parameters that minimize interference.

Devices join by discovering available networks (active scan), selecting a network, and requesting association. The coordinator or a router processes the association request, assigns a network address, and authenticates the device. Upon successful joining, the new device can communicate within the network.

Permit joining is typically disabled except when specifically adding new devices, reducing the window for unauthorized devices to join. Installation codes provide an additional security layer by deriving unique keys for each joining device.

Security

Security Model

Zigbee security provides confidentiality, integrity, and authentication using AES-128 in CCM* mode, the authenticated-encryption construction defined by IEEE 802.15.4. Two keys protect different traffic: the network key encrypts all network layer traffic, while optional application link keys protect application layer traffic between specific device pairs.

The trust center (typically the coordinator) manages security policy, generates and distributes the network key, and authenticates joining devices. All devices share the network key, enabling any device to decrypt network traffic. Link keys provide end-to-end encryption that routers cannot decrypt.

Frame counters prevent replay attacks. Each device maintains counters incremented with each transmission. Receivers verify that incoming frame counters exceed previously received values, rejecting replayed frames.

Key Distribution

Network key distribution during joining presents a classic bootstrapping challenge. The joining device needs the network key to communicate securely, but secure communication requires having the key. Several approaches address this challenge.

In practice the trust center sends the network key encrypted under a trust center link key that the joining device already holds. When that link key is the well-known default published in the specification, the encryption is nominal: anyone listening during the joining window can decrypt the transported network key. What limits the exposure is administrative control over when joining is permitted, not the encryption itself. Zigbee 2007 also defined a separate high security mode intended to close this gap, but it saw essentially no commercial implementation and was dropped from Zigbee 3.0.

Installation codes remove the guesswork. A random value printed on the device or its packaging, usually as a QR code, is hashed into a device-specific trust center link key that only that device and a correctly provisioned trust center know, so the network key travels under a secret no eavesdropper possesses. The code must reach the trust center out of band, which is why commissioning applications scan it rather than deriving it over the air.

Zigbee 3.0 treats install-code-derived keys as the higher-security joining path and expects certified products to carry a code, while retaining the default global key as a fallback for open joining. The Zigbee PRO 2023 (R23) specification addresses that fallback directly: dynamic link-key negotiation lets each device establish a unique key without any shared global default, and a device interview procedure lets the trust center inspect a joining device before granting it full access.

Security Considerations

Network key sharing means that compromising any device potentially exposes the entire network's traffic. High-value deployments should use link keys for sensitive communication, limiting exposure to application data even if network keys are compromised.

Physical access to devices may enable key extraction, particularly for devices without secure element hardware. Deployments in accessible locations should assume devices may be compromised and design accordingly.

Over-the-air updates must be secured to prevent malicious firmware installation. The Zigbee OTA Upgrade cluster carries images across the mesh and provides for image verification, but the cluster only transports the file: the strength of the update path depends on the manufacturer implementing signature verification in the bootloader. An unsigned update mechanism turns a mesh into a distribution channel for hostile firmware.

Finally, availability deserves the same attention as confidentiality. Zigbee shares 2.4 GHz with Wi-Fi, Bluetooth, and microwave ovens, and an adversary who simply jams the band takes the network down regardless of key strength. Systems whose failure matters, such as security sensors, should fail to a safe state and report loss of communication rather than treat silence as normal.

Zigbee 3.0 and Later Revisions

Unification

Zigbee 3.0, released in 2016, unified previously separate application profiles (Home Automation, Light Link, Building Automation, and others) into a single standard. This unification ensures that devices certified under Zigbee 3.0 interoperate regardless of their specific application domain.

The Base Device Behavior specification defines common requirements for all Zigbee 3.0 devices, including commissioning, touchlink, and finding-and-binding procedures. These standardized behaviors simplify setup and improve the user experience across device types.

Zigbee 3.0 also consolidated the profile-specific cluster definitions into a single Zigbee Cluster Library revision, so a given cluster means the same thing regardless of a device's application domain. It further requires Green Power Basic Proxy functionality, which guarantees that any compliant router can relay frames from ultra-low-power, potentially energy-harvesting devices that do not implement the full stack.

Zigbee PRO 2023 (R23)

Zigbee PRO 2023, the Revision 23 (R23) specification published by the Connectivity Standards Alliance in March 2023, is the current evolution of the network layer beneath Zigbee 3.0. It emphasizes security and onboarding: dynamic link-key negotiation removes reliance on a shared global default key, a device interview lets the trust center assess each joiner, and trust-center management of authentication levels improves coexistence between general Zigbee and Smart Energy devices on one network.

R23 also introduces Zigbee Direct, which uses Bluetooth Low Energy as a commissioning and control channel so that a smartphone can discover, configure, and operate Zigbee devices without a dedicated Zigbee radio in the phone. The revision extends operation beyond 2.4 GHz to sub-GHz bands, specifically 800 MHz in Europe and 900 MHz in North America, where the lower frequency buys range and building penetration. A first phase of the "Works with All Hubs" effort improves resilience on hub-centric networks by helping a device select the most suitable parent when it joins or rejoins.

Adoption of R23 is gradual. The specification is backward compatible in the sense that R23 devices interoperate with existing Zigbee 3.0 networks, but its security benefits appear only when both the joining device and the trust center implement the new mechanisms, which requires firmware updates on hubs and coordinators as well as on end products. Installed networks therefore continue to run the older joining procedures for years after the specification is published.

Touchlink Commissioning

Touchlink enables direct device-to-device commissioning by bringing devices into close physical proximity. Originally developed for Zigbee Light Link, it was carried forward into Zigbee 3.0, where it remains an optional commissioning method. A controller and target device exchange network information when brought close together, with proximity providing implicit authorization.

Touchlink can create new networks, add devices to existing networks, or factory reset devices. Proximity is enforced only by reducing transmit power during the scan, which in normal use limits the exchange to roughly ten centimeters and makes setup intuitive: hold the new device beside the controller to add it.

That physical constraint is weaker than it appears. Security research presented in 2017 showed that an attacker using sensitive receivers and amplified transmitters can eavesdrop on touchlink key material from more than a hundred meters and take over certified products, including popular smart bulbs, from a comparable distance. Because touchlink also carries a factory-reset command, a single touchlink-enabled device is enough to undermine an otherwise sound network. Deployments that do not need touchlink should disable it and commission with installation codes instead.

Green Power

Green Power enables ultra-low-power devices to interact with Zigbee networks without implementing the full Zigbee stack. Target applications include energy-harvesting switches and sensors that generate power from button presses, motion, or solar cells.

Green Power devices transmit short frames that Green Power proxies receive and tunnel into the main Zigbee network, where sink devices translate them into ordinary Zigbee actions. The proxy and sink roles are what allow a device with no network address, no routing table, and no persistent receiver to participate at all. A kinetic wall switch, for example, harvests the energy of the button press itself, sends its frame once, and returns to being an inert piece of plastic.

Security is scaled to the available energy rather than omitted. The specification defines a graded set of levels: no security, a four-byte frame counter with a four-byte message integrity code, and that same protection plus AES-128 encryption of the payload. The frame counter defeats replay, and commissioning establishes a device-specific key tied to the device identifier. The practical weakness lies in key distribution during commissioning rather than in the cipher, so commissioning should be performed deliberately and then closed.

Related Technologies

Thread

Thread is an IPv6-based mesh networking protocol also built on IEEE 802.15.4. Developed by the Thread Group (with significant Google involvement), Thread provides IP connectivity throughout the mesh, enabling direct integration with IP-based systems and internet services.

Thread and Zigbee share the same physical layer but differ fundamentally in network layer approach. Thread uses 6LoWPAN header compression to carry IPv6 over 802.15.4 and secures commissioning with DTLS, so a Thread device is reachable from the wider IP network through a border router. Its routing is a distance-vector scheme of its own design rather than a general-purpose internet routing protocol: routers periodically exchange Mesh Link Establishment advertisements carrying link and path costs, then forward by next hop. A Thread partition supports at most thirty-two active routers, with other capable devices held in reserve as router-eligible end devices that are promoted when needed. Zigbee, by contrast, keeps its own non-IP network layer with Zigbee-specific addressing, routing, and security.

Thread does not define application layer protocols; it provides only the network infrastructure. Application protocols like Matter run over Thread networks, providing the device interoperability that Zigbee Cluster Library provides for Zigbee.

Matter

Matter, developed by the Connectivity Standards Alliance (the same body that maintains Zigbee), defines an application layer protocol for smart home devices. Matter can run over various transports including Thread, Wi-Fi, and Ethernet, providing a unified application layer across different network technologies.

Matter reached its 1.0 release in late 2022, and adoption by Apple, Google, Amazon, and Samsung positions it as a candidate unifying standard for smart home interoperability. Its data model borrows directly from the Zigbee Cluster Library, so clusters, attributes, and commands remain recognizable to anyone who has worked with Zigbee, but the transport beneath is IP rather than a proprietary network layer.

Zigbee and Matter coexist in the evolving smart home landscape. Existing Zigbee installations continue operating, bridges provide Matter-Zigbee interoperability, and manufacturers may offer dual-protocol products supporting both ecosystems.

Z-Wave

Z-Wave is a mesh networking protocol competing with Zigbee in home automation. Operating in sub-GHz bands (around 900 MHz, with the exact frequency varying by region), Z-Wave achieves good range and building penetration, and its choice of band avoids contention with the crowded 2.4 GHz spectrum used by Wi-Fi and Bluetooth. Silicon Labs acquired the Z-Wave technology in 2018, and the Z-Wave Alliance continues to steward the ecosystem.

Z-Wave was historically proprietary, which gave the alliance tight control over interoperability. Since 2020 the specification has been progressively opened and ratified as a public standard, enabling broader implementation while preserving the strict certified interoperability that has long been a Z-Wave strength.

The smart home market accommodates both Zigbee and Z-Wave, with hubs often supporting both protocols. Device selection often depends on specific product availability rather than protocol preference.

Applications

Smart Home

Zigbee powers extensive smart home deployments including lighting control, climate management, security systems, and energy monitoring. Several major platforms depend on it: Philips Hue bridges Zigbee lighting, Samsung SmartThings hubs include a Zigbee radio, and certain Amazon Echo models ship with a built-in Zigbee hub, although that capability varies by model rather than spanning the whole product line.

Lighting represents Zigbee's largest application area. Smart bulbs, switches, dimmers, and controllers use standard Zigbee clusters for interoperable control. The mesh nature enables coverage throughout homes without Wi-Fi range limitations.

Environmental sensors for temperature, humidity, motion, and contact monitoring report to central hubs or directly trigger automation rules. Battery-powered sensors benefit from Zigbee's power efficiency, achieving multi-year battery life.

Building Automation

Commercial buildings use Zigbee for lighting control, HVAC management, occupancy sensing, and energy monitoring. The mesh architecture accommodates large buildings with many devices, while standardized interfaces enable multi-vendor installations.

Zigbee Building Automation profile (now unified into Zigbee 3.0) addresses commercial requirements including scheduling, scenes, and integration with building management systems. Green Power enables battery-free switches and sensors throughout buildings.

Retrofit installations benefit from wireless mesh networking, avoiding the cost of running new control wiring. Commissioning tools support the large device counts typical in commercial deployments.

Industrial and Utility

Smart energy applications use Zigbee for home area networks connecting smart meters to in-home displays, thermostats, and load control devices. The Smart Energy profile defines clusters for metering, pricing, and demand response.

Industrial sensor networks use Zigbee for monitoring and control in applications with moderate data rates and latency tolerance. The mesh topology provides resilience in industrial environments, though critical control typically uses purpose-built industrial wireless like WirelessHART or ISA100.11a.

Healthcare and Medical

The Zigbee Health Care profile, published in 2010 and later folded into the unified Zigbee 3.0 cluster set, defines clusters for vital-signs monitoring, fitness equipment, and aging-in-place applications. The Continua Health Alliance referenced it in its design guidelines for personal connected health devices.

Commercial uptake was nonetheless limited. Personal health devices largely settled on Bluetooth Low Energy, which reaches a phone directly and needs no hub, and Zigbee's remaining role in this sector lies mostly in fixed installations such as assisted-living occupancy sensors, fall detection, and nurse-call systems that share a building-wide mesh with lighting and HVAC.

Implementation Considerations

Hardware Selection

Zigbee implementation begins with selecting an appropriate radio and microcontroller. Major semiconductor vendors including Texas Instruments (CC2530, CC2652), Silicon Labs (the EFR32MG "Mighty Gecko" family), and NXP (JN516x, JN518x, K32W) offer Zigbee-capable devices with varying capabilities and protocol-stack support. Many of these parts are multiprotocol, running Zigbee, Thread, and Bluetooth Low Energy on the same radio, which suits devices that must support Matter over multiple transports.

System-on-chip solutions integrate radio, processor, and memory, simplifying design for battery-powered end devices. Module options with pre-certified radios accelerate development and simplify regulatory compliance.

Coordinator and router devices typically need more memory for routing tables and security processing. End devices can use more constrained devices, especially for simple sensor applications.

Stack Selection

Zigbee stacks are available from silicon vendors, from the Connectivity Standards Alliance as a reference implementation, and from third parties. Stack selection involves certification status, feature completeness, code size, support, and licensing terms.

Certification requires using a certified stack and passing product certification testing. Stack vendors typically provide certification support and may offer pre-certified reference designs that simplify the certification process.

Open-source implementations exist but may lack certification or full feature compliance. These options suit prototyping and applications where Zigbee certification is not required.

Network Design

Network design must ensure adequate router coverage throughout the deployment area. Router placement affects coverage, capacity, and latency. More routers improve redundancy but increase cost and coordination. Because each network supports a finite number of children per parent and a limited routing-table depth, large deployments must plan device hierarchy as well as physical placement.

End-device parent selection affects network balance. Automatic selection distributes devices across available parents, but explicit assignment may be needed for specific requirements.

Channel selection should avoid Wi-Fi interference. In the 2.4 GHz band, the four Zigbee Light Link primary channels (11, 15, 20, and 25) are spaced to coexist with the three non-overlapping Wi-Fi channels (1, 6, and 11); channels 15, 20, and 25 in particular fall between Wi-Fi carriers and are common defaults. Channel 26 sits at the top of the band and is best avoided, because some regulatory domains cap its transmit power and not all radios support it. Site surveys identify local interference conditions before deployment.

Testing and Certification

Zigbee certification ensures standard compliance and interoperability. The certification process involves testing by authorized test houses and review by the Connectivity Standards Alliance. Certification is required to use the Zigbee trademark and to claim interoperability.

Testing covers all layers: physical (RF performance), MAC (protocol compliance), network (routing and security), and application (cluster implementation). Test tools from the Alliance and third parties support development and pre-compliance testing.

Interoperability testing verifies operation with devices from other manufacturers. Alliance interoperability events and test houses provide opportunities to test against diverse products before a device reaches the market.

Conclusion

Zigbee remains one of the most widely deployed low-power mesh technologies, combining the IEEE 802.15.4 radio with a mature network layer, the interoperable Zigbee Cluster Library, and a security model centered on AES-128 and a trust center. Its self-healing mesh, low power draw, and multi-vendor ecosystem make it a durable choice for lighting, sensing, and building control.

The technology continues to evolve rather than stand still: Zigbee 3.0 unified its application profiles, Zigbee PRO 2023 hardened security and added Bluetooth-based onboarding through Zigbee Direct, and Matter, from the same Connectivity Standards Alliance, now provides a common application layer that bridges Zigbee with Thread and Wi-Fi. For new designs, the practical question is less Zigbee versus its rivals than how Zigbee fits within a converging, IP-aware smart-home and building ecosystem.

Related Topics