I’m trying to connect some smart TRVs (Moes BRT-100) over Zigbee to my HA. I bought the HA SkyConnect dongle but so far haven’t used it for anything else.
I’ve seen other have used these TRVs but I couldn’t find explicit instructions on how to set them up, but so far I’ve:
- Got the ‘ZigBee Home Automation’ and ‘MQTT’ integrations installed.
- Installed the ‘Zigbee2MQTTT’ third-party add-on.
- Confirmed my dongle is using
/dev/ttyUSB0
Zigbee2MQTT doesn’t start and I get this error:
[13:14:33] INFO: Preparing to start...
[13:14:34] INFO: Socat not enabled
[13:14:36] INFO: Starting Zigbee2MQTT...
Zigbee2MQTT:info 2024-02-15 13:14:43: Logging to console and directory: '/config/zigbee2mqtt/log/2024-02-15.13-14-43' filename: log.txt
Zigbee2MQTT:info 2024-02-15 13:14:43: Starting Zigbee2MQTT version 1.35.3 (commit #unknown)
Zigbee2MQTT:info 2024-02-15 13:14:43: Starting zigbee-herdsman (0.33.8)
Zigbee2MQTT:error 2024-02-15 13:15:04: Error while starting zigbee-herdsman
Zigbee2MQTT:error 2024-02-15 13:15:04: Failed to start zigbee
Zigbee2MQTT:error 2024-02-15 13:15:04: Check https://www.zigbee2mqtt.io/guide/installation/20_zigbee2mqtt-fails-to-start.html for possible solutions
Zigbee2MQTT:error 2024-02-15 13:15:04: Exiting...
Zigbee2MQTT:error 2024-02-15 13:15:04: Error: Failed to connect to the adapter (Error: SRSP - SYS - ping after 6000ms)
at ZStackAdapter.start (/app/node_modules/zigbee-herdsman/src/adapter/z-stack/adapter/zStackAdapter.ts:103:27)
at Controller.start (/app/node_modules/zigbee-herdsman/src/controller/controller.ts:132:29)
at Zigbee.start (/app/lib/zigbee.ts:60:27)
at Controller.start (/app/lib/controller.ts:109:27)
at start (/app/index.js:107:5)
This is the configuration.yaml
data_path: /config/zigbee2mqtt
socat:
enabled: false
master: pty,raw,echo=0,link=/tmp/ttyZ2M,mode=777
slave: tcp-listen:8485,keepalive,nodelay,reuseaddr,keepidle=1,keepintvl=1,keepcnt=5
options: "-d -d"
log: false
mqtt: {}
serial:
port: /dev/ttyUSB0
I’ve tried looking through the add-ons docs etc but not found anything useful (that I can understand).