-->
Page 1 of 4

[NodeMcu] Requested new features and API

PostPosted: Sat Nov 22, 2014 12:40 pm
by zeroday
Consider the constraint resources that ESP8266 has, only basic api added for now.
Am I missing something very useful?

Re: [NodeMnu] Requested new features and API

PostPosted: Sat Nov 22, 2014 12:59 pm
by alonewolfx2
zeroday wrote:Consider the constraint resources that ESP8266 has, only basic api added for now.
Am I missing something very useful?

show hidden ssid function on new sdk :) and baudrate change function can be usefull
and maybe readToEnd dunction for file operations

Re: [NodeMnu] Requested new features and API

PostPosted: Sat Nov 22, 2014 3:54 pm
by ThomasW
Code: Select allwifi.sta.getnetmask()
wifi.sta.getbroadcast()
wifi.sta.getgateway()

.. or maybe something like "wifi.sta.getinfo()" returning a table with all connection-related parameters

Code: Select allnet.socket:getremoteinfo()

.. or similar, returning ip/port of the peer

Thomas

Re: [NodeMnu] Requested new features and API

PostPosted: Sun Nov 23, 2014 3:52 am
by Hans174
Hello,

A memory module to read from and to write to the ES8266 would be fine.
One could then write drivers in LUA.

Code: Select allmemory.read(address)              -- returns the 32 bit value of the 32 bit address
memory.write(address, value)      -- writes the 32 bit value to the 32 bit address


Hans