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?