I got this esp8266 module http://www.electrodragon.com/product/es ... fi-module/ , connected it to a MAC OSX machine using a FTDI adapter (3.3V I/O, 9600, external beefy 3.3V LDO) and flushed it with the latest Lua image.
Now I am trying to use it via Cool Term in line mode.
Some commands do work:
> print(1+1)
2
> Some commands kind of work:
> print (1/0)
c_ÇÏRSöfJSúfJSúâîá // This must be the ~75kbps startup message
NodeMCU 0.9.5 build 20150212 powered by Lua 5.1.4 // a divide by zero caused a module reset.
> And others do not work at all:
> node.info()
> // expecting here version info, etc.
> file.open("test.lua", "w")
> file.write("test text")
> file.close()
> file.list()
> // expecting at least one file to be listed hereAm I missing something?