Installation

You can use SLZB-06 either as Zigbee to Ethernet adapter or as Zigbee to USB adapter. Depending on the type you are going to use, you can connect you device.

Zigbee2MQTT setup

Connection over Ethernet

  1. Plug in RJ45 cable to your device.

TIP

SLZB-06 has optoelectronic isolation, so can be connected to USB port of your PC and at the same time to Ethernet/PoE cable!

  1. Follow Zigbee2MQTT set-up process official guidelineopen in new window. You can set-up as a linux package, docker container or extension for Home Assistant.
  2. Use the following lines in port: settings:
...
serial:
  port: tcp://192.168.0.105:6638
...
1
2
3
4

where

  • 192.168.0.105 is an IP address of SLZB-06 in your network;
  • 6638 is a port of your SLZB-06 adapter (default is 6638, can be configured within Firmware);
  1. Run Zigbee2MQTT.

Connection over USB

  1. Plug in type-C cable to the device.

TIP

SLZB-06 has optoelectronic isolation, so can be connected to USB port of your PC and at the same time to Ethernet/PoE cable!

WARNING

DRIVERS for USB/UART converter! SLZB-06 uses CP2102 as an USB/UART chip. If your system does not recognize the device, you have to install the drivers. We reccomend to use the drivers from official web page of Silicon Labs CP210x driver pageopen in new window!

  1. Follow Zigbee2MQTT set-up official guidelineopen in new window. You can set-up as a linux package, docker container or extension for Home Assistant.
  2. Use the following lines in port: settings:
...
serial:
  port: /dev/ttyUSB0
...
1
2
3
4

where

  • /dev/ttyUSB0 is an ID of SLZB-06 device within your system;

Running Z2M in a Docker

Sample docker-compose settings that were tested sucesfully:

version: '3'
services:
  zigbee2mqtt:
    container_name: zigbee2mqtt
    image: koenkk/zigbee2mqtt
    restart: unless-stopped
    network_mode: host
    privileged: true
    environment:
      - TZ=Europe/Kiev
    volumes:
      - /run/udev:/run/udev:ro
      - /home/pi/docker-containers/zigbee2mqtt:/app/data
1
2
3
4
5
6
7
8
9
10
11
12
13

.

Key parameters and their definitions:

  • network_mode: host - means that your containers has the same access as the host machine.
  • privileged: true - allows your container to access your host devices, important if you are using a USB connection.
  • /home/pi/docker-containers/zigbee2mqtt is a location of your Zigbee2MQTT configuration.yaml file.

ZHA (Zigbee Home Automation) setup

Autodiscovery

Home Assistant version 2023.1 and above contains LAN autodiscovery feature for SLZB-06. If mDNS is allowed by your network router, the set-up is stightforward:

  1. Run your Home Assistant
  2. Plug-in your SLZB-06 to LAN (either by Ethernet or WiFi).
  3. Home Assistant will makes notification that new supported device is found and will propose to set it up. Confirm it and that is it - SLZB-06 is inegrated into your Home Assistant throught ZHA integration.

Manual set-up

  1. Go to Home Assistant
  2. Click Settings
  3. Go to Devices & Services
  4. Click Add integration (right bottom corner)
  5. Find «Zigbee Home Automation», click on it;
  6. Between two options «Add Zigbee device» and «Zigbee Home Automation» choose Zigbee Home Automation;
  7. Select serial port window - Enter manually
  8. Radio type window - ZNP = Texas Instruments Z-Stack ZNP …
  9. Serial port settings window:
  • Serial device path: « socket://192.168.1.105:6638 », where 192.168.1.105 is IP address of your SLZB-06;
  • port speed left by default 115200;
  • data flow control undefined (it does not matter for LAN adapters)
  1. Press Submit.
  2. Network formation window - Erase network settings and form a new network
  3. Wait for Zigbee network and try to add some Zigbee end-device (e.g. sensor etc)