mirror of
https://github.com/fhem/fhem-mirror.git
synced 2024-11-22 09:49:50 +00:00
4ff92d185c
git-svn-id: https://svn.fhem.de/fhem/trunk@991 2b470e98-0d58-463d-a4d8-8e2adae1ed80
15 lines
297 B
Bash
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
|
|
|
|
|