After struggling with getting my Conbee 3 to connect properly on my QNAP NAS, I finally found a solution that worked! Here’s what I did:
-
Installed the deCONZ Docker Image: I started by installing the deCONZ Docker image through QNAP’s Container Station. It was a bit tricky, but the community support was amazing.
-
Loaded the FTDI_SIO Module: The key was loading the
ftdi_sio.komodule. I used the following script to automate this at startup:
bash
#!/bin/sh
/sbin/insmod /lib/modules/others/ftdi_sio.ko
if lsmod | grep ftdi_sio > /dev/null; then
echodate“[ OK ] autorun.sh: ftdi_sio.ko module loaded” >> /var/log/autorun_script.log
else
echodate“[FAIL] autorun.sh: failed to load ftdi_sio.ko module” >> /var/log/autorun_script.log
fi -
Testing the Connection: After a few reboots, the Conbee 3 showed up in
/devasttyUSB0. It was such a relief to see it finally recognized!
If anyone else is having trouble with their Conbee 3 on QNAP, I hope this helps. Let me know if you have any questions or need further assistance! ![]()