The Elelabs Firmware Update Utility is a basic Python 3 script to flash the the firmware inside a range of Elelabs Zigbee and Thread products to a newer version.
Currently sold supported products based on Silicon Labs microcontrollers:
- Elelabs Zigbee Raspberry Pi Shield ELR023 (EFR32MG13P Silicon Labs MCU inside)
- Elelabs Zigbee USB Adapter ELU013 (EFR32MG13P Silicon Labs MCU inside)
Previously sold supported products based on Silicon Labs microcontrollers:
- Elelabs Zigbee Raspberry Pi Shield ELR022 (EFR32MG1B Silicon Labs MCU inside)
- Elelabs Zigbee USB Adapter ELU012 (EFR32MG1B Silicon Labs MCU inside)
- Elelabs Zigbee Raspberry Pi Shield EZBPIS (EM357 Silicon Labs MCU inside) TODO
- Elelabs Zigbee USB Adapter EZBUSBA (EM357 Silicon Labs MCU inside) TODO
Disclaimer: This utility should also work with other generic EZSP (EmberZNet Serial Protocol) or Spinel (Openthread Serial Protocol) based adapters and modules from other vendors, however firmwares for products not from Elelabs are not provided here and there is no guarantees that that it will work with non-Elelabs products. Be wanted that you may void your warranty and even brick your adapter if the firmware update is not supported by your mnaufacturer.
- Download or clone the repository
- Get your Python3 ready
- Install the required packages using the
pip
utility
pip3 install -r requirements.txt
-
Connect your Elelabs Zigbee/Thread Product to your PC or Raspberry Pi
-
Find out the Serial port number of the Elelabs Zigbee/Thread Product
- For Raspberry Pi Shield it is probably
/dev/ttyAMA0
- For USB Adapter on a Linux PC or Raspberry Pi it is probably
/dev/ttyUSB0
(the number 0 may be different) - For USB Adapter on a Windows PC it is probably
COM1
(the number 1 may be different)
- For Raspberry Pi Shield it is probably
-
Launch the
probe
command to check if everything is working as expected
python3 Elelabs_EzspFwUtility.py probe -p /dev/ttyUSB0
only for Elelabs products
The ele_update
is the easiest way of updating Elelabs Zigbee/Thread Products to a newer version or to switch between Zigbee and Thread version. The firmware update files are stored in the same repository and are automatically selected by the utility itself.
Switch/update to latest Zigbee
python3 Elelabs_EzspFwUtility.py ele_update -p /dev/ttyS6 -v zigbee
Switch/update to latest Thread
python3 Elelabs_EzspFwUtility.py ele_update -p /dev/ttyS6 -v thread
for any EZSP/Spinel product
The probe
is used to detect the version of the connected Zigbee/Thread product or to detect if the product is in bootloader mode.
python3 Elelabs_EzspFwUtility.py probe -p /dev/ttyS6
Product in Zigbee EZSP mode
Product in Thread Spinel mode
Product in bootloader mode
restart – Restart the connected generic Zigbee/Thread product in Normal EZSP/Spinel mode or in Bootloader mode
for any EZSP/Spinel product
The restart
is used to probe the connected Zigbee/Thread product and restart it in normal or in bootloader mode. The normal mode is regular EZSP/Spinel operation. The bootloader mode is used only for the firmware update.
Switch from Normal mode to Bootloader mode
python3 Elelabs_EzspFwUtility.py restart -m btl -p /dev/ttyS6
Switch from Bootloader mode to Normal mode
python3 Elelabs_EzspFwUtility.py restart -m nrml -p /dev/ttyS6
for any EZSP product
The flash
is used to restart the connected EZSP product in bootloader mode and perform Firmware Update using XMODEM protocol. You need to provide an actual file for this utility. !!BE CAREFULL!! as this might damage or 'brick' your product.
python3 Elelabs_EzspFwUtility.py flash -f YOUR_NEW_EZSP_FIRMWARE_FILE.gbl -p /dev/ttyS6
If for some reason the update
or flash
utility failed and your product is no longer responding.
probe
the EZSP adapter as described. Most probably it is now in the Bootloader mode- try to
restart
the EZSP adapter innrml
mode. If success -> your product is working now - try to
flash
the EZSP adapter with the firmware file. If the product is inbtl
mode it will probably work - contact Elelabs:
info at elelabs.com
For integration with OpenHAB please see our our OpenHAB user guide.
For integration with Home Assistant see our Home Assistant user guide. Please note if you are using the EZSP v8 firmware you will also have to add the following to your configuration.yaml
for the Home Assistant ZHA integration to load successfully.
zha:
zigpy_config:
ezsp_config:
CONFIG_APS_UNICAST_MESSAGE_COUNT: 12
CONFIG_SOURCE_ROUTE_TABLE_SIZE: 16
CONFIG_ADDRESS_TABLE_SIZE: 8