Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

4
  • 6
    Same experience here. And I really, really liked Lua. Commented Nov 24, 2017 at 14:43
  • 1
    Yeah. Lua as a language is an interesting experience. On NodeMCU, mostly a frustrating one.. Commented Nov 24, 2017 at 15:09
  • 2
    I like lua and the REPL. I also like js on the ESP8266 (espruino) and its small footprint. As a programmer of embedded systems, it is very clear that many of the Arduino libraries are written by non-embedded programmers wasting and/or fragmenting valuable memory. I do use Arduino but do things like using my own string management from C rather than that ugly C++ class. Memory is a commodity to appreciate not abuse. Commented Dec 18, 2018 at 22:46
  • 1
    I learned a little trick.:.in your loop routine add a millisecond delay at the very bottom.....this will allow the chip to do its wifi 'homework' ..yóur code will not notice that...and problem solved!..... ;) Commented Apr 8, 2020 at 7:07