2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2024-11-22 09:49:50 +00:00
fhem-mirror/fhem/contrib/FB7270/fhemcmd.sh
rudolfkoenig 4ff92d185c FB7270 added
git-svn-id: https://svn.fhem.de/fhem/trunk@991 2b470e98-0d58-463d-a4d8-8e2adae1ed80
2011-09-03 11:30:27 +00:00

15 lines
297 B
Bash

#!/bin/sh
## FritzBox 7390
## Beispiel fuer das Senden von FHEM Kommandos ueber den Telefoncode
## #95*x* wobei x hier 1 bzw 2 entspricht.
case $1 in
1) echo "set Steckdose on" | /sbin/socat - TCP:127.0.0.1:7072
;;
2) echo "set Steckdose off" | /sbin/socat - TCP:127.0.0.1:7072
;;
esac