20 lines
458 B
Plaintext
Executable File
20 lines
458 B
Plaintext
Executable File
require "scripts/lua/functions"
|
|
|
|
commandArray = {}
|
|
|
|
|
|
--recupere les minutes
|
|
time=os.time()
|
|
minutes=tonumber(os.date('%M',time))
|
|
|
|
if (minutes % 10 == 0) then
|
|
local f = io.popen("ls /media/WDBlue/motion/ |grep jpg| cut -c 1-2 |uniq| wc -l") -- runs command
|
|
local l = f:read("*a") -- read output of command
|
|
debug("Nombre de detection "..l)
|
|
f:close()
|
|
commandArray['PhotoMotion']=tostring(l)
|
|
commandArray['UpdateDevice']="1065|"..l
|
|
end
|
|
|
|
return commandArray
|