Work more with even less memory! what a terrible world :-/

This commit is contained in:
ollo 2016-06-19 00:50:18 +02:00
parent 27ca03878c
commit 1c0b5883b9
3 changed files with 4 additions and 2 deletions

View File

@ -151,5 +151,6 @@ function generateLEDs(words, color)
else
buf= buf .. white:rep(1)
end
collectgarbage()
return buf
end

View File

@ -15,7 +15,7 @@ function sendWebPage(conn,answertype)
timezoneoffset=1
end
buf="HTTP/1.1 200 OK\nServer: NodeMCU\nContent-Type: text/html\n\n"
if (node.heap() < 10000) then
if (node.heap() < 8000) then
buf = buf .. "<h1>Busy, please come later again</h1>"
else
buf = buf .. "<html>"
@ -73,6 +73,7 @@ function startWebServer()
file.close()
file.remove(configFile)
if (file.rename(configFile .. ".new", configFile)) then
dofile(configFile) -- load the new values
sendWebPage(conn,2) -- success
else
sendWebPage(conn,3) -- error

View File

@ -123,6 +123,6 @@ function display_timestat(hours, minutes, longmode)
elseif (hours == 12) then
ret.twelve=1
end
collectgarbage()
return ret
end