-
Notifications
You must be signed in to change notification settings - Fork 21
YAHM Module: HM FAKE LAN GW
Dieses Modul basiert auf der Arbeit von wuffzack aus dem Homematic-Forum. Es verwandelt das HM-MOD-RPI-PCB Raspberry Funkmodul in einen HM LAN Gateway (HM-LGW-O-TW-W-EU)
Die Installation entspricht weitgehend dem HM-MOD-RPI-PCB Moduls. Es werden die selben Schritte zur Deaktivierung der seriellen Konsole, sowie dem Abschalten von Bluetooth bei Raspberry Pi 3 durchgeführt.
Abweichend von dem Funkmodul wird ein anderer Start/Stop Skript benötigt, welches die Software auf dem Host startet.
#!/bin/sh
### BEGIN INIT INFO
# Provides: hm-fake-lan-gw yahm
# Required-Start: udev mountkernfs $remote_fs
# Required-Stop:
# Default-Start: S
# Default-Stop: 0 1 6
# Short-Description: Start Fake HM-LAN-GW Service
# Description: http://homematic-forum.de/forum/viewtopic.php?f=18&t=27705
### END INIT INFO
. /lib/lsb/init-functions
case "$1" in
start)
log_daemon_msg "Starting HM-LAN-GW Service"
printf "Starting HM-LAN-GW Service"
cd /opt/YAHM/share/tools/hmgw
/opt/YAHM/share/tools/hmgw/hmlangw -n auto > /var/log/hmlangw.log 2>&1 &
log_end_msg 0
;;
stop)
log_daemon_msg "Stopping HM-LAN-GW Service"
printf "Stopping HM-LAN-GW Service"
killall -w hmlangw
;;
*)
echo "Usage: $0 start|stop" >&2
exit 3
;;
esac
Die Seriennummer befindet sich nach dem ersten Start in /opt/YAHM/share/tools/hmgw/serialnumber.txt.
Die Einrichtung des Fake Lang Gateways erfolgt analog zum original Homematic Lan Gateway, jedoch ohne Eingabe eines Sicherheitsschlüssel bzw. Zugriffscode.
Navigation
- Startseite
- Installation
- Updates
- Netzwerk
- LXC Kontainer Verwaltung
-
Backup&Restore
- YAHM komplett
- CCU2 Daten
- Module
- Migration
- Probleme und Lösungen