- 2 Profalux volets
- 2 dedicated profalux remotes (1 for each volet) + 1 "global" remote that controls them simultaneously
- Raspberry pi
- ConBee II
- deCONZ
- Phoscon App
- Hombridge
- Homebridge-hue plugin
- Homekit
Finally found the docs on the Profalux site. See...
- Reset a remote (does this just disconnect from an existing Zigbee network?)
R x5
- Open the network
R
thenstop
- Join a network
R
thenup
- Copy a remote (make the global remote control the other volets)
- The 2 remotes must be in the same network (see open and join above)
- On the remote that works with the volet:
Up + Down
thenstop
(the volet should move up and down continuously) - On the global remote:
R
thenstop
(TODO: verify)
- live image via ssh:
ssh [email protected] "sudo dd if=/dev/mmcblk0 bs=1M" | dd of=./backup.img bs=1M
- adapted from here
- test the image:
sudo losetup -Pf ./backup.img # find the loopback device that was created, loop8 in my case losetup sudo mount /dev/loop8p1 /mnt ll /mnt sudo unmount /mnt sudo mount /dev/loop8p2 /mnt ll /mnt sudo unmount /mnt sudo losetup -d /dev/loop8
- shrinking the image:
sudo ~/dev/PiShrink/pishrink.sh -d ./backup.img ./backup-shrunk.img
- big compression of shrunk image (from 7GB to 1GB):
zstd --ultra -T0 -22 ./backup-shrunk.img -o ./backup-shrunk.img.zst