hal/plugins/hal-zigbee
2021-08-26 21:21:55 +02:00
..
resource/resource Added hal prefix to all config properties 2021-07-19 18:06:00 +02:00
src/se/hal/plugin/zigbee Added mDNS Daemon which will resolve hal.local domain 2021-08-26 21:21:55 +02:00
test/se/hal/plugin/zigbee Added zigbee Hal DB data storage 2021-07-06 21:57:21 +02:00
build.gradle Downgraded zigbee framework to work with CC2531 dongle 2021-06-06 04:33:28 +02:00
README.md Some troubleshooting on ZigBee plugin 2021-02-13 16:03:29 +01:00

Plugin Configuration

Config Parameter Value Description
zwave.com_port Name or location of com port The port where radio dongle is connected
zigbee.pan_id Integer The PAN ID for the radio module

Hardware

You need to buy the following items:

  1. http://www.ti.com/tool/cc2531emk
  2. http://www.ti.com/tool/cc-debugger

Flashing Dongle

Instructions are originally from: https://www.zigbee2mqtt.io/information/flashing_the_cc2531.html

Windows

  1. Download and install the "SmartRF Flash Programmer" (Not v2) application from https://www.ti.com/tool/FLASH-PROGRAMMER

  2. Download Z-STACK software (We do not actually need the software just the firmware binary that is included in the installation) from https://www.ti.com/tool/Z-STACK (You will need to create an account to download)

  3. Connect CC debugger to the CC2531 USB sniffer.

  4. Connect BOTH the CC2531 USB sniffer and the CC debugger to your PC using USB.

    • If the light on the CC debugger is RED press set reset button on the CC debugger. The light on the CC debugger should now turn GREEN. If not use CC debugger user guide to troubleshoot your problem.
  5. Start SmartRF Flash Programmer, with the properties below:

    • Flash image: Locate the binary at \Projects\zstack\ZNP\CC253x\dev\ (Make sure to select the .hex file and not the .bin file).
    • Uncheck "Retain IEEE address when reprogramming the chip".
  6. Press "Perform Action" to start flashing.

Linux or MacOS

  1. Install prerequisites for CC-Tool using a package manager (e.g. Homebrew for macOS)

    • Ubuntu/Debian: libusb-1.0-0-dev, libboost-all-dev, autoconf, libtool
    • Fedora: dh-autoreconf, boost-devel, libusb1-devel, gcc-c++
    • Archlinux: dh-autoreconf, libusb, boost
    • macOS: brew install autoconf automake libusb boost pkgconfig libtool
    • Raspbian: dh-autoreconf, libusb-1.0-0-dev, libboost-all-dev
  2. Build cc-tool

     git clone https://github.com/dashesy/cc-tool.git
     cd cc-tool
     ./bootstrap
     ./configure
     make
    
  3. Connect BOTH the CC2531 USB sniffer and the CC debugger to your PC using USB.

    • If the light on the CC debugger is RED press set reset button on the CC debugger. The light on the CC debugger should now turn GREEN. If not use CC debugger user guide to troubleshoot your problem.
  4. Download the firmware CC2531_DEFAULT_xxxxxxx.zip (If link is dead try latest version here)

  5. Flash your firmware:

     sudo ./cc-tool -e -w CC2531ZNP-Prod.hex
    

References