The Smart Home Saga: How to Build Your Own Zigbee Gateway


๐Ÿง™โ€โ™‚๏ธ The Smart Home Saga: How to Build Your Own Zigbee Gateway ๐Ÿง™โ€โ™€๏ธ

(With Full Alexa and Home Assistant Integration) ๐ŸŒŸ
By Technomancer


๐Ÿ“œ The Quest Begins: Scope

Your mission, is to create a powerful Zigbee gateway that can coordinate all Zigbee devices in your enchanted castle.
At the end of this adventure, your gateway will seamlessly integrate with Alexa and Home Assistant, ready to control your Zigbee-powered devices. ๐ŸŒ


๐ŸŽฏ **Final Result: ๐Ÿง™โ€โ™‚๏ธ The Wizardโ€™s Control Panel **

Imagine walking into your hobbit hole and commanding your lights, curtains, and magic cauldrons with just a whisper to Alexa or a wave through Home Assistant! ๐Ÿ ๐Ÿ’ก

With this Zigbee Gateway, youโ€™ll be the ruler of all things smart in your enchanted realm. Hereโ€™s a sneak peek of what your domain could look like:

๐Ÿงš Home Assistant Lights Control

A perfect blend of lights from the realms of IKEA and Philips!
lights

๐Ÿ‘‘ Alexa Lights Control

Magic at your fingertipsโ€”command lights with a single spell!
alexa app

๐Ÿงฐ Requirements for this Magical Journey

Software

  • Home Assistant (The Central Tower of Command) ๐Ÿฐ
  • Mosquitto (Your trusted Messenger Dragon ๐Ÿ‰)

Hardware

  • SONOFF ZBDongle-E (Your Magical Staff)
  • Various Zigbee Devices (The enchanted tools of your domain)

๐Ÿฐ Setting Up Home Assistant

๐Ÿง™โ€โ™€๏ธ Home Assistant is the enchanted crystal ball that keeps an eye on all your Zigbee devices. Follow this mystical guide to summon it.

Once summoned, youโ€™re halfway to becoming the Zigbee Oracle of your land! โšก

๐Ÿ‰ Mosquitto

Every wizard needs a messenger dragon, and Mosquitto is just that. It speaks the MQTT protocol, a language of whispers between your Zigbee devices and the realm. Use this scroll to summon Mosquitto. ๐Ÿง‘โ€๐Ÿ’ป


๐Ÿ”ฎ The SONOFF ZBDongle-E: Your Magical Staff

To become the master of your devices, you need a magical staffโ€”the SONOFF ZBDongle-E.

You can enchant this staff using the Silabs Firmware Flasher.

Download the enchantment spell:

1
ncp-uart-hw-v7.4.2.0-zbdonglee-115200.gbl

๐Ÿ” Identify the Serial Port

Plug the device where you want to install and summon zigbe2mqtt.

Wizards often use bash scripts to identify magical ports.

Cast a spell from this tome to know your portโ€™s name.

1
2
3
4
5
6
7
muadib@arrakis:~$ ./ports.sh
/dev/bus/usb/001/001 - Linux_5.10.0-9-amd64_xhci-hcd_xHCI_Host_Controller_0000:00:0d.0
/dev/bus/usb/002/001 - Linux_5.10.0-9-amd64_xhci-hcd_xHCI_Host_Controller_0000:00:0d.0
/dev/bus/usb/003/002 - ITEAD_SONOFF_Zigbee_3.0_USB_Dongle_Plus_V2_20240217153832
/dev/ttyACM0 - ITEAD_SONOFF_Zigbee_3.0_USB_Dongle_Plus_V2_20240217153832
...


๐Ÿง‘โ€๐Ÿ’ป Installing Zigbee2MQTT: The Magic Gateway

First, open your wizardโ€™s terminal and use Docker Compose to build your Zigbee gateway.

Hereโ€™s the incantation:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
zigbee2mqtt:
container_name: zigbee2mqtt # Assigns a fixed name to the container for easier identification.
image: "koenkk/zigbee2mqtt:1.39.1" # Pulls the Zigbee2MQTT image version 1.39.1 from Docker Hub.
volumes:
- /media/media4/home/zigbee2mqtt:/app/data # Mounts the host directory for persistent data storage.
devices:
- /dev/ttyACM0:/dev/ttyACM0 # Maps the host's Zigbee dongle (on /dev/ttyACM0) to the container for hardware access.
restart: unless-stopped # Ensures the container automatically restarts unless explicitly stopped.
environment:
- TZ=Europe/Rome # Sets the timezone inside the container to Europe/Rome for proper logging and scheduling.
ports:
- 8080:8080 # Exposes port 8080 for the Zigbee2MQTT web frontend on the host machine.
depends_on:
- mosquitto # Indicates that the Zigbee2MQTT service should start only after the Mosquitto container is up.
mosquitto:
container_name: mosquitto
image: eclipse-mosquitto:2.0.18
ports:
- 1883:1883 #default mqtt port
volumes:
- /media/media4/home/mosquitto/mosquitto_conf:/mosquitto/config
- /media/media4/home/mosquitto/mosquitto_data:/mosquitto/data
- /media/media4/home/mosquitto/mosquitto_log:/mosquitto/log

Technical Breakdown:

  • container_name:

    • This sets a static name for the Zigbee2MQTT container. This is particularly useful for referencing or troubleshooting because you wonโ€™t need to look up dynamically assigned container names.
  • image:

    • Specifies the Docker image to use. In this case, koenkk/zigbee2mqtt:1.39.1 is a popular open-source image for managing Zigbee devices via MQTT. Version 1.39.1 is used to ensure compatibility and stability.
  • volumes:

    • Mounts a local directory (/media/media4/home/zigbee2mqtt) to the containerโ€™s /app/data directory. This is where Zigbee2MQTT stores configuration and device information, ensuring that data is persisted across container restarts.
  • devices:

    • Maps the Zigbee dongle connected to /dev/ttyACM0 on the host machine to the same path inside the container. This gives the container direct access to the physical Zigbee hardware needed to interact with Zigbee devices.
    • The dongle acts as a Zigbee coordinator, sending and receiving signals to and from Zigbee devices.
  • restart: unless-stopped:

    • Instructs Docker to automatically restart the container if it crashes or stops unexpectedly, unless a manual stop command is issued. This ensures high availability.
  • environment:

    • Sets the TZ environment variable to define the timezone (Europe/Rome) for the container. This is important for logging events with accurate local timestamps, especially for troubleshooting or automation.
  • ports:

    • Exposes port 8080 on the host and maps it to port 8080 inside the container, enabling access to the Zigbee2MQTT web interface. This interface is useful for managing devices, viewing logs, and controlling Zigbee2MQTT operations.
  • depends_on:

    • This directive ensures that the mosquitto service (MQTT broker) starts before Zigbee2MQTT, as Zigbee2MQTT relies on Mosquitto to send/receive MQTT messages. However, it does not ensure the service is ready (health checks would be needed for that).

We are now ready for the zigbee2,qtt configuration

โš™๏ธ Configure Zigbee2MQTT

Create a configuration.yaml file.

This spell controls the flow of magical MQTT energy between your Zigbee devices:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
homeassistant:
legacy_entity_attributes: false
permit_join: false
mqtt:
base_topic: zigbee2mqtt
server: mqtt://<mosquitto_ip>:1883
user: <mosquitto_user>
password: <mosquitto_password>
serial:
port: /dev/ttyACM0
adapter: ember
frontend:
port: 8080
ota:
update_check_interval: 10
disable_automatic_update_check: false

This configuration outlines how Zigbee2MQTT interacts with Home Assistant, Zigbee hardware, and MQTT messaging infrastructure.

The MQTT broker serves as the core communication hub between Zigbee2MQTT and other smart home applications (e.g., Home Assistant). Zigbee devices communicate via the Zigbee dongle, and their states or commands are translated into MQTT messages.

Hereโ€™s a detailed technical breakdown of the Zigbee2MQTT configuration block

homeassistant block:

1
2
homeassistant:
legacy_entity_attributes: false
  • homeassistant:

    • This section is specifically configured to allow the integration between Zigbee2MQTT and Home Assistant.
  • legacy_entity_attributes:

    • This is set to false to disable the legacy format for entity attributes in Home Assistant. The older format included additional metadata in MQTT messages that is no longer required by modern versions of Home Assistant. This reduces unnecessary message payload sizes, leading to faster response times and better performance in Home Assistant.

permit_join:

1
permit_join: false
  • permit_join:
    • Controls whether new Zigbee devices can automatically join the network. When set to false, Zigbee2MQTT wonโ€™t allow new devices to join the network unless explicitly permitted via the UI or CLI. This adds security to prevent unauthorized devices from joining the network.
    • This setting can be temporarily changed when you want to pair a new device (e.g., from the Zigbee2MQTT UI).

mqtt block:

1
2
3
4
5
mqtt:
base_topic: zigbee2mqtt
server: mqtt://<mosquitto_ip>:1883
user: <mosquitto_user>
password: <mosquitto_password>
  • mqtt:

    • This block defines the MQTT connection settings used by Zigbee2MQTT to publish and subscribe to MQTT messages.
  • base_topic:

    • This sets the base MQTT topic (zigbee2mqtt) under which all Zigbee devices will publish their data. For example, if a Zigbee light bulb is connected, its state (on/off) will be published under the topic zigbee2mqtt/<device_name>/state.
  • server:

    • Specifies the MQTT broker address, in this case, itโ€™s using the mosquitto broker running at mqtt://<mosquitto_ip>:1883. Port 1883 is the default for MQTT.
    • <mosquitto_ip> represents the IP address or hostname of the broker. This broker acts as the communication hub for Zigbee2MQTT and other devices or services, such as Home Assistant.
  • user/password:

    • These fields define the authentication credentials required to connect to the MQTT broker. If the broker requires authentication (which is recommended for security), the <mosquitto_user> and <mosquitto_password> fields should be filled with valid credentials.

serial block:

1
2
3
serial:
port: /dev/ttyACM0
adapter: ember
  • serial:

    • This section configures the serial communication settings between Zigbee2MQTT and the Zigbee coordinator hardware (e.g., a USB Zigbee dongle).
  • port:

    • Specifies the serial port on the host machine where the Zigbee dongle is connected. In this case, the dongle is mapped to /dev/ttyACM0.
    • This serial port provides the physical connection between the Zigbee network and the host, allowing Zigbee2MQTT to send and receive signals via the coordinator.
  • adapter:

    • Defines the type of Zigbee adapter used. Here, ember is specified, which refers to the EmberZNet chipset (commonly used in Sonoff Zigbee Dongle and other devices).
    • Other common adapters could be zstack (for Texas Instruments-based adapters) or deconz (for ConBee).

frontend block:

1
2
frontend:
port: 8080
  • frontend:

    • Configures the settings for the Zigbee2MQTT web interface that allows users to manage and monitor Zigbee devices via a browser.
  • port:

    • The web interface is accessible via port 8080, allowing users to view logs, manage devices, and perform actions like pairing, resetting, or updating devices from a GUI. Users can access this interface through http://<host_ip>:8080.

ota block (Over-the-Air Updates):

1
2
ota:
update_check_interval: 10
  • ota:

    • This section controls the over-the-air (OTA) update behavior for supported Zigbee devices (such as IKEA or Philips Hue products).
  • update_check_interval:

    • Specifies how often (in hours) Zigbee2MQTT checks for firmware updates for Zigbee devices. Here, itโ€™s set to check every 10 hours.
    • OTA updates allow supported devices to get firmware upgrades without needing to physically interact with the device.

disable_automatic_update_check:

1
disable_automatic_update_check: false
  • disable_automatic_update_check:
    • Controls whether Zigbee2MQTT automatically checks for new software updates for itself. When set to false, the system will automatically look for updates to Zigbee2MQTT and notify users through the frontend.
    • Keeping this feature enabled ensures that youโ€™re running the latest version of the software with bug fixes and new features, but you can disable it if you prefer manual updates.

From our docker-compose folder, we can summon the containers and unleash our magical spells ๐Ÿง™โ€โ™‚๏ธโœจ with:

1
docker-compose up -d

If everything is in the right place and charged with enough mana ๐Ÿ”ฎ, navigate to http://:8080 in your browser. You should see the Zigbee2MQTT web UI appear, providing an easy way to monitor, manage, and control your Zigbee network through a mystical web interface! ๐Ÿ–ฅ๏ธโšก


๐Ÿงน Start Pairing Devices

Head over to your wizardโ€™s console at https://<host>:8080 and enable permit join to start pairing your Zigbee devices! ๐ŸŒˆ

  • Enable: Permit join on zigbee2mqtt
    • permit_join
  • Activate pairing mode on your device.
  • Wait for the magic to happen. โœจ

Test your devices through the Zigbee2mqtt UI and bask in the power you now hold. ๐ŸŽ‰

demo


๐Ÿค– Configure Home Assistant: The Heart of the Realm

Using the power of the MQTT integration in Home Assistant, you can control your Zigbee devices!

Follow the wizardry within Home Assistant to link it with Zigbee2MQTT. ๐ŸŒ

From the Home Assistant UI, add a new MQTT integration ๐Ÿ”„:

Add MQTT Integration

Configure it with your MQTT broker details:

  • MQTT Host ๐ŸŒ
  • User ๐Ÿง‘โ€๐Ÿ’ป
  • Password ๐Ÿ”‘

Configure MQTT

Once configured, youโ€™ll be able to see and control all your Zigbee devices directly from Home Assistant! ๐ŸŒŸ
demo


๐Ÿ—ฃ๏ธ Alexa Integration: Speak, and the Magic Happens!

To communicate with Alexa, weโ€™ll use the emulated_hue integration in Home Assistant.

Edit your configuration.yaml file to include your devices:

1
2
3
4
5
6
7
8
9
10
11
12
emulated_hue:
listen_port: 80
expose_by_default: false
entities:
light.camera:
name: "camera"
light.soggiorno:
name: "soggiorno"
light.bagno:
name: "bagno"
light.cucina:
name: "cucina"

Restart home-assistant

Alexa will now recognize your devices as enchanted lights and let you control them with your voice! ๐Ÿ—ฃ๏ธโœจ


๐ŸŒŸ Conclusion: Youโ€™ve Mastered the Magic

Congratulations! Youโ€™ve completed the quest and built a Zigbee Gateway that allows full integration with Alexa and Home Assistant. Your lights, and any Zigbee devices, will now bend to your will with just a word or a tap. You are now the true Technomancer! ๐Ÿง™โ€โ™‚๏ธ๐ŸŒ


๐Ÿ‘‘ May your smart home journey be filled with automation magic and convenience spells!