02-25-2014 06:19 PM
I've heard a lot about LUA for use in Home Automation. Who can tell me about LUA?
local seen={}
function dump(t,i)
seen[t]=true
local s={}
local n=0
for k in pairs(t) do
n=n+1 s[n]=k
end
table.sort(s)
for k,v in ipairs(s) do
print(i,v)
v=t[v]
if type(v)=="table" and not seen[v] then
dump(v,i.."\t")
end
end
end
dump(_G,"")I found this great site: www.lua.org that give some examples. Can any EcoHaus products be modified with this code?
02-25-2014 06:21 PM
Hi @HaileyB . Good find. I too have been interested in scripting languages for home automation and came across this other. SMIL - has anybody used it?
03-19-2014 01:17 PM
This is very helpful - Thank you!
