lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Sun, Nov 23, 2014 at 10:28 PM, Roberto Waltman <techie@rwaltman.com> wrote:

> These guys replaced the '8266 original built-in firmware with Lua, to
> convert it into a stand alone IP sensor.
> Here:
> http://importhack.wordpress.com/2014/11/22/how-to-use-ep8266-esp-01-as-a-sensor-web-client/

That has to be eLua rather than Lua. Lua requires an operating system
(but can be compiled and run on any known platform). eLua will boot on
microprocessor's bare metal. The two are very closely related and
share a lot of code, but are quite different because eLua runs on bare
metal. E.g., eLua requires its own add-on modules and can't use the
standard Lua's modules. See <http://www.eluaproject.net/>.

Best regards,

Paul