Left here for archival purposes.

User avatar
By Markus Gritsch
#5800
jankop wrote:Can anyone advise me please, why my program is not working with NodeMcu 0.9.4 build 20141222? Shows only a blank page. With NodeMcu 0.9.2 build 20141219 is not a problem.
Thanx


Try replacing all your individual conn:send() calls by just one. Seems that
Code: Select all  conn:on("sent",function(conn)
    conn:close()
  end)

is now called immediately after the first conn:send()

This worked for me.