Fix: show minor version. Improve formatting
This commit is contained in:
commit
e49eec62d3
@ -14,11 +14,11 @@ return function (connection, args)
|
|||||||
connection:send("<b>Files:</b><br/>\n")
|
connection:send("<b>Files:</b><br/>\n")
|
||||||
connection:send("<ul>\n")
|
connection:send("<ul>\n")
|
||||||
|
|
||||||
local l = file.list()
|
for name, size in pairs(file.list()) do
|
||||||
for name, size in pairs(l) do
|
|
||||||
local isHttpFile = string.match(name, "(http/)") ~= nil
|
local isHttpFile = string.match(name, "(http/)") ~= nil
|
||||||
local url = string.match(name, ".*/(.*)")
|
|
||||||
if isHttpFile then
|
if isHttpFile then
|
||||||
|
local url = string.match(name, ".*/(.*)")
|
||||||
connection:send(' <li><a href="' .. url .. '">' .. url .. "</a> (" .. size .. " bytes)</li>\n")
|
connection:send(' <li><a href="' .. url .. '">' .. url .. "</a> (" .. size .. " bytes)</li>\n")
|
||||||
-- this list could be very long, so we'll yield in order to avoid overflowing the send buffer.
|
-- this list could be very long, so we'll yield in order to avoid overflowing the send buffer.
|
||||||
coroutine.yield()
|
coroutine.yield()
|
||||||
|
|||||||
@ -14,8 +14,7 @@ return function (connection, args)
|
|||||||
connection:send('<body>')
|
connection:send('<body>')
|
||||||
connection:send('<h1>Node info</h1>')
|
connection:send('<h1>Node info</h1>')
|
||||||
majorVer, minorVer, devVer, chipid, flashid, flashsize, flashmode, flashspeed = node.info();
|
majorVer, minorVer, devVer, chipid, flashid, flashsize, flashmode, flashspeed = node.info();
|
||||||
sendAttr(connection, "majorVer" , majorVer)
|
sendAttr(connection, "NodeMCU version" , majorVer.."."..minorVer.."."..devVer)
|
||||||
sendAttr(connection, "devVer" , devVer)
|
|
||||||
sendAttr(connection, "chipid" , chipid)
|
sendAttr(connection, "chipid" , chipid)
|
||||||
sendAttr(connection, "flashid" , flashid)
|
sendAttr(connection, "flashid" , flashid)
|
||||||
sendAttr(connection, "flashsize" , flashsize)
|
sendAttr(connection, "flashsize" , flashsize)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user