Teile:
Raspberry Pi 4 mit allen Teilen: https://amzn.to/3C7hNik
Raspberry Pi 4 einzeln: https://amzn.to/3Anip2j
Raspberry Pi 4 Netzteil: https://amzn.to/3Ppu4St
Raspberry Pi 4 Gehäuse: https://amzn.to/3Qjjmhz
M.2 fürs Argon Gehäuse: https://amzn.to/3JSvYdf
ConBee II ZigBee USB Stick: https://amzn.to/3w4yffB
usb pfad raussuchen:
``` Bash
ls -la /dev/serial/by-id/
```
docker-compose.yml anpassen
https://phoenixnap.com/kb/docker-on-raspberry-pi
``` Bash
apt-get install docker-compose
service docker start
```
```
##docker-compose.yml version: '3.8' auf version: '3.3' ändern, port 8080 auf 8181
version: '3.3'
services:
zigbee2mqtt:
container_name: zigbee2mqtt
restart: unless-stopped
image: koenkk/zigbee2mqtt
volumes:
- ./zigbee2mqtt-data:/app/data
- /run/udev:/run/udev:ro
ports:
- 8181:8181
environment:
- TZ=Europe/Berlin
devices:
- /dev/ttyACM0:/dev/ttyACM0
##zigbee2mqtt-data/configuration.yaml , port 8080 auf 8181, adapter hinzufügen
# Let new devices join our zigbee network GNU nano 5.4 configuration.yaml *
permit_join: true
mqtt:
base_topic: zigbee2mqtt
server: 'mqtt://192.168.0.**:1883'
user: ******
password: ******
serial:
adapter: deconz
port: /dev/ttyACM0
frontend:
port: 8181
## alternative:
```
... <a href="/Blog/ViewPosting/4/zigbee2mqtt-mit-deconz-und-ikea-starkvind">(Weiterlesen)</a>
7/3/2022 10:22:21 PM
by Chris 1389
Teile:
Raspberry Pi 4 mit allen Teilen: https://amzn.to/3C7hNik
Raspberry Pi 4 einzeln: https://amzn.to/3Anip2j
Raspberry Pi 4 Netzteil: https://amzn.to/3Ppu4St
Raspberry Pi 4 Gehäuse: https://amzn.to/3Qjjmhz
M.2 fürs Argon Gehäuse: https://amzn.to/3JSvYdf
ConBee II ZigBee USB Stick: https://amzn.to/3w4yffB
https://coldcorner.de/2018/04/02/deconz-hue-bridge-auf-dem-raspberry-pi-emulieren/
http://phoscon.de/en/conbee2/install#raspbian
port umstellen (muss nach jedem update geprüft werden, zb beim wechsel von stable auf beta)
reboot
install deconz binding
taucht dann als thing in inbox auf
add as thing
config pending unter things
in phoscon auf hamburger klicken -> einstellungen / gateway -> erweitern -> app verbinden, das binding verbindet sich automatisch
wenn alles läuft, firmware update prüfen (einstellungen gateway allgemein) und gateway neu starten (einstellungen gateway power)
``` Bash
sudo sh -c "echo 'deb http://phoscon.de/apt/deconz $(lsb_release -cs)-beta main' > /etc/apt/sources.list.d/deconz.list"
```
Am Ende konnte DeConz kein Starkvind, hab dann auf ZigBee2MQTT gewechselt
7/2/2022 10:22:21 PM
by Chris 1202