11 lines
195 B
Bash
11 lines
195 B
Bash
|
#!/data/data/com.termux/files/usr/bin/bash
|
||
|
PLG="$HOME/bin/tplink_smartplug.py -t 192.168.1.250 -c"
|
||
|
|
||
|
# If the light is on
|
||
|
if $PLG info | grep ',"relay_state":1,';then
|
||
|
exit 1
|
||
|
else
|
||
|
exit 0
|
||
|
fi
|
||
|
|