Lua is such a great language for this . I don't know why I haven't tried this yet. Having lost faith in Python for my personal pet home automation projects I want to complete this winter. I think I just found my language for doing some ideas I want to try at home.
In this context, they mean embedded devices (typically running machine code on non-x86 architecture CPUs: ARM, AVR, etc).
They are either providing means to compile Lua code to machine code (or an interpreter/VM running on controller and executing Lua code). Also, they have unified hardware abstraction layer for all the different architectures and controlls supported, so that operating peripherals feels the same on all platforms.
>> "In this context, they mean embedded devices (typically running machine code on non-x86 architecture CPUs: ARM, AVR, etc)."
Sorry, but I'm still not understanding the value.
I'll paste an excerpt from Lua official website:
"Lua is implemented in pure ANSI C and compiles unmodified in all known platforms. All you need to build Lua is an ANSI C compiler (gcc is a popular one). Lua also compiles cleanly as C++."[1]