12 lines
331 B
Bash
Executable File
12 lines
331 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DOMO_IP="localhost" # Domoticz IP Address
|
|
DOMO_PORT="81" # Domoticz Port
|
|
IDX=1148
|
|
|
|
movies=`find /media/WDBlue/motion/CAM1/*.avi -mmin -2|wc -l`
|
|
echo $movies
|
|
curl -y 1 -s "http://$DOMO_IP:$DOMO_PORT/json.htm?type=command¶m=udevice&idx=$IDX&nvalue=0&svalue=$movies" &
|
|
|
|
exit 0
|