Remove unused file
This commit is contained in:
parent
8a195cb798
commit
a54159b39f
@ -1,29 +0,0 @@
|
|||||||
local function sendHeader(connection)
|
|
||||||
connection:send("HTTP/1.0 200 OK\r\nContent-Type: text/html\r\nCache-Control: private, no-store\r\n\r\n")
|
|
||||||
|
|
||||||
end
|
|
||||||
|
|
||||||
local function sendAttr(connection, attr, val)
|
|
||||||
if val then
|
|
||||||
connection:send("<li><b>".. attr .. ":</b> " .. val .. "<br></li>\n")
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
return function (connection, req, args)
|
|
||||||
collectgarbage()
|
|
||||||
sendHeader(connection)
|
|
||||||
connection:send('<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><title>A Lua script sample</title></head><body><h1>Node info</h1><ul>')
|
|
||||||
local majorVer, minorVer, devVer, chipid, flashid, flashsize, flashmode, flashspeed = node.info();
|
|
||||||
--local x = (majorVer..".")..(minorVer..".")..devVer
|
|
||||||
sendAttr(connection, "NodeMCU version" , majorVer.."."..minorVer.."."..devVer)
|
|
||||||
sendAttr(connection, "chipid" , chipid)
|
|
||||||
sendAttr(connection, "flashid" , flashid)
|
|
||||||
sendAttr(connection, "flashsize" , flashsize)
|
|
||||||
sendAttr(connection, "flashmode" , flashmode)
|
|
||||||
sendAttr(connection, "flashspeed" , flashspeed)
|
|
||||||
sendAttr(connection, "node.heap()" , node.heap())
|
|
||||||
sendAttr(connection, 'Memory in use (KB)' , collectgarbage("count"))
|
|
||||||
sendAttr(connection, 'IP address' , wifi.sta.getip())
|
|
||||||
sendAttr(connection, 'MAC address' , wifi.sta.getmac())
|
|
||||||
connection:send('</ul></body></html>')
|
|
||||||
end
|
|
||||||
Loading…
x
Reference in New Issue
Block a user