Skip to main content

Update du deCONZ

Update deCONZ manually

Manuel Pietschmann edited this page 6 days ago · 3 revisions

As this question came up recently, this one should come in handy for some people having trouble to update deCONZ and the firmware via Phoscon App.

Requirements

  • RaspBee or ConBee
  • Raspberry Pi
  • Raspbian Linux

Update with Docker

If you are using the deCONZ Docker image the steps in this guide won't work.
Please refer to the following guide, which describes how to update the firmware inside Docker.

https://github.com/marthoc/docker-deconz#updating-conbeeraspbee-firmware

Update within Raspbian

  1. Login to your machine and stop the deCONZ service.

    sudo systemctl stop deconz (Headless version), or
    sudo systemctl stop deconz-gui (GUI version)

  2. Download latest deCONZ firmware. Check https://www.dresden-elektronik.de/rpi/deconz-firmware for the latest release.
    Replace the filename accordingly.

    wget https://www.dresden-elektronik.de/rpi/deconz-firmware/deCONZ_Rpi_0x262f0500.bin.GCF

  3. Flash deCONZ firmware. Change the filename according to your download in step 2.

    RaspBee
    sudo GCFFlasher_internal -f deCONZ_Rpi_0x262f0500.bin.GCF

    ConBee
    sudo GCFFlasher_internal -d 0 -f deCONZ_Rpi_0x262f0500.bin.GCF

  4. [Optional] Update the deCONZ package as well.

    wget https://www.dresden-elektronik.de/rpi/deconz/beta/deconz-latest-beta.deb
    sudo dpkg -i deconz-latest-beta.deb

  5. Have deCONZ up and running again.

    sudo systemctl start deconz (Headless version), or
    sudo systemctl start deconz-gui (GUI version)

Source