So im using this st the moment
Is it worth changing to the Universal Tuya one? The official doesnt work as far as I am aware only the experimental ones
What did you change to?
My 13a scolmore sockets dont report power usage
So im using this st the moment
Is it worth changing to the Universal Tuya one? The official doesnt work as far as I am aware only the experimental ones
What did you change to?
My 13a scolmore sockets dont report power usage
I cant get ANY zigbee device added now. I just get a warning saying something went wrong unable to connect.
Was fine pre 12.12. Ive rolled back a snapshot but the firmware gets pulled on startup. If i pull the ethernet I get back to 12.11 but the features of 12.12 remain so not sure whats going on there!
Anyone else got zigbee issues? Could be my bridge perhaps?
Maybe edit the homey-shs.sh script to disable auto update (it might not solve the current issue, but you can get in control of your next updates).
root@homey-shs:/usr/local/bin# cat homey-shs.sh
#!/usr/bin/env bash
set -Eeuo pipefail
IMAGE="ghcr.io/athombv/homey-shs"
CONTAINER="homey-shs"
DATA_DIR="/root/.homey-shs"
mkdir -p "$DATA_DIR"
# DISABLED: Auto-update on boot
# if ! docker pull "$IMAGE"; then
# echo "[homey-shs] Warning: docker pull failed; continuing with cached image if available" >&2
# fi
echo "[homey-shs] Starting with existing image (auto-update disabled)"
docker rm -f "$CONTAINER" >/dev/null 2>&1 || true
docker run \
--name="$CONTAINER" \
--network host \
--privileged \
--detach \
--restart unless-stopped \
--volume "$DATA_DIR":/homey/user/ \
"$IMAGE"