How to map Conbee 2 USB Stick to Home Assistant Supervised..?

Dear community!
I am just trying to get my Conbee2 stick to work.
It seems like I have to map it into my HA Docker-Container, but I have no idea how…
I am using a supervised install on a Raspi4.
Maybe someone can give me a hint?
Is there somewhere a config-file where I can modifiy the startup-parameters of the container?

Thanks a lot & best regards!
Michael

If you are using homeassistant supervised, you don’t need to map anything. HA should find your stick. Look in the supervisor tab -> system under hardware.

Hi Francis,

I can see the Devices via Supervisor -> System -> Hardware

  • /dev/serial/by-id/usb-dresden_elektronik_ingenieurtechnik_GmbH_ConBee_II_DE2191252-if00
  • /dev/ttyACM0
  • /dev/ttyAMA0

Tried all of them, but without success. HA keeps telling me, that there is no ZHA-Device.
Any idea what I am doing wrong?

Thanks a lot!
Michael

  • what OS are you running ? Did you uninstall modemmanager?
  • Did you specify the correct radio-type in the zha configuration?

Running Raspbian on Raspi 4.
Modemmanager has been purged…
Radio-Type “deconz”.

Don’t put your conbee in an usb3 port.

It is not. It is plugged to usb2 port…

What happens if you use the following in a terminal window;

  • ls /dev/ttyUSB*

IF “No such file or directory” you need to do following.

  • create shell script “/usr/local/etc/rc.d/startup.sh”
  • insert this code in het shell script
'#!/bin/bash
insmod /lib/modules/usbserial.ko
insmod /lib/modules/ftdi_sio.ko
'

Save and make it executable (chmod 755), then reboot

recheck which should show something like “/dev/ttyUSB0”

you could also just try the two insmod commands but these don't survive a reboot, the script will.