Hello there,
today I finally got my Conbee 2 Stick in the mail.
I want to use it with Homebridge.
I started from scratch and flashed a new SD card with the newest Homebridge Raspberry Pi image.
After that I installed the VNC Server tool and also installed deCONZ.
I worked my through the official documentation for the ConBee Installation for Raspbian.
pi@homebridge:~ $ sudo gpasswd -a $USER dialout
Adding user pi to group dialout
pi@homebridge:~ $ wget -O - http://phoscon.de/apt/deconz.pub.key | \
sudo apt-key add -
--2023-06-13 23:34:09-- http://phoscon.de/apt/deconz.pub.key
Resolving phoscon.de (phoscon.de)... 144.76.96.194
Connecting to phoscon.de (phoscon.de)|144.76.96.194|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1692 (1.7K) [application/octet-stream]
Saving to: ‘STDOUT’
- 100%[=============================================================================================>] 1.65K --.-KB/s in 0s
2023-06-13 23:34:09 (66.5 MB/s) - written to stdout [1692/1692]
Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)).
OK
pi@homebridge:~ $ sudo sh -c "echo 'deb http://phoscon.de/apt/deconz \
$(lsb_release -cs)-beta main' > \
/etc/apt/sources.list.d/deconz.list"
pi@homebridge:~ $ sudo apt update
Get:1 http://phoscon.de/apt/deconz bullseye-beta InRelease [2,876 B]
Hit:2 http://archive.raspberrypi.org/debian bullseye InRelease
Hit:3 http://raspbian.raspberrypi.org/raspbian bullseye InRelease
Hit:4 https://repo.homebridge.io stable InRelease
Get:5 http://phoscon.de/apt/deconz bullseye-beta/main armhf Packages [730 B]
Fetched 3,606 B in 1s (2,895 B/s)
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
1 package can be upgraded. Run 'apt list --upgradable' to see it.
pi@homebridge:~ $ apt list --upgradeable
Listing... Done
deconz/unknown 2.22.01-raspbian-buster-beta armhf [upgradable from: 2.21.02-raspbian-buster-stable]
N: There is 1 additional version. Please use the '-a' switch to see it
pi@homebridge:~ $ sudo apt install deconz
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages will be upgraded:
deconz
1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 6,729 kB of archives.
After this operation, 438 kB of additional disk space will be used.
Get:1 http://phoscon.de/apt/deconz bullseye-beta/main armhf deconz armhf 2.22.01-raspbian-buster-beta [6,729 kB]
Fetched 6,729 kB in 2s (3,722 kB/s)
Reading changelogs... Done
(Reading database ... 121048 files and directories currently installed.)
Preparing to unpack .../deconz_2.22.01-raspbian-buster-beta_armhf.deb ...
Important: enable_uart=1 should be set in /boot/config (RaspBee only)
Important: /boot/cmdline must not contain console=serial0 (RaspBee only)
use raspi-config to configure serial port access as described in user manual (RaspBee only)
Unpacking deconz (2.22.01-raspbian-buster-beta) over (2.21.02-raspbian-buster-stable) ...
Setting up deconz (2.22.01-raspbian-buster-beta) ...
Important: enable_uart=1 should be set in /boot/config (RaspBee only)
Important: /boot/cmdline must not contain console=serial0 (RaspBee only)
use raspi-config to configure serial port as described in documentation (RaspBee only):
https://github.com/dresden-elektronik/deconz-rest-plugin#software-requirements
Processing triggers for desktop-file-utils (0.26-1) ...
Processing triggers for mailcap (3.69) ...
pi@homebridge:~ $ systemctl status deconz
● deconz.service - deCONZ: ZigBee gateway -- REST API
Loaded: loaded (/lib/systemd/system/deconz.service; disabled; vendor preset: enabled)
Active: active (running) since Tue 2023-06-13 23:21:22 CEST; 15min ago
Main PID: 1829 (deCONZ)
Tasks: 4 (limit: 1599)
CPU: 15min 25.708s
CGroup: /system.slice/deconz.service
└─1829 /usr/bin/deCONZ -platform minimal --http-port=80
Jun 13 23:21:22 homebridge systemd[1]: Started deCONZ: ZigBee gateway -- REST API.
Jun 13 23:21:22 homebridge deCONZ[1829]: QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-pi'
Jun 13 23:21:23 homebridge deCONZ[1829]: libpng warning: iCCP: known incorrect sRGB profile
Jun 13 23:21:24 homebridge deCONZ[1829]: This plugin does not support propagateSizeHints()
Jun 13 23:21:24 homebridge deCONZ[1829]: This plugin does not support propagateSizeHints()
pi@homebridge:~ $
I encounter two problems (they might be the same after all):
- When I connect to my Raspberry via VNC I can’t start deCONZ. Just nothing happens.
- When I enter the URL Phoscon App - Login into my browser, it looks and looks for gateways but can’t find any.
But the Stick itself can be found.
pi@homebridge:~ $ lsusb
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 003: ID 1cf1:0030 Dresden Elektronik ZigBee gateway [ConBee II]
Bus 001 Device 002: ID 2109:3431 VIA Labs, Inc. Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Is there a way to check if the Stick is corrupted or so? I really have no idea what problem Ive run into.
https: //phoscon .de/discover shows just “[]”
Thanks in advance!