没有从NodeMCU / LUA HTTP Server输出到客户端

时间:2016-02-04 02:11:42

标签: lua esp8266 nodemcu

无法从网络服务器获取任何输出到无线客户端。我使用的exact scripts(逐字)似乎比我尝试过的任何其他人都更加优雅和稳定。

将上述链接中的3个脚本上传到NodeMCU Dev(ESP8266-12E)后按复位,脚本按预期通过串口输出状态:

Communication with MCU...
Got answer! AutoDetect firmware...

NodeMCU firmware detected.
=node.hStatus = 0 (Idle)
eap()
36936
> Status = 0 (Idle)
Status = 0 (Idle)
Status = 0 (Idle)

  { repeats for 30 seconds ... }

Status = 0 (Idle)
Status = 0 (Idle)
network not found, switching to AP mode
Starting up AP with SSID: Unconfigured-2c:36
GET received

以上输出显示我与另一个客户端(收到GET)连接到此AP,但客户端上从未有任何输出。浏览器页面为空白。

调用输出HTML页面的函数位于configServer.lua:

function sendPage(conn)
  conn:send('HTTP/1.1 200 OK\n\n')
  ...

conn:send()个语句都不会在客户端上生成任何输出。我尝试过多个客户端和多个浏览器。我还在此例程中设置了一些print()语句,可以看到它正在完全执行。

有没有人知道可能导致此问题的类型或如何对其进行故障排除?似乎这些脚本对尝试它们的其他人有效。

我使用http://nodemcu-build.com运行NodeMCU。它基于SDK v1.4.0。它似乎运作良好:

NodeMCU custom build by frightanic.com
    branch: master
    commit: c8037568571edb5c568c2f8231e4f8ce0683b883
    SSL: false
    modules: adc,bit,cjson,coap,crypto,dht,enduser_setup,file,gpio,i2c,mqtt,net,node,pwm,rtctime,spi,tmr,u8g,uart,wifi
 build  built on: 2016-02-03 23:59
 powered by Lua 5.1.4 on SDK 1.4.0

1 个答案:

答案 0 :(得分:1)

它适用于其他人,因为它适用于NodeMCU 0.9.6。

With NodeMCU 1.4.0, multiple calls to conn:send() won't work.

您需要将所有数据连接在一起并一次性发送。

conn:send('HTTP/1.1 200 OK\n\n<!DOCTYPE HTML>\n<html>\n<head><meta content="text/html; charset=utf-8">\n<title>Device Configuration</title></head>\n<body>\n<form action="/" method="POST">\n')

或者,根据conn:on("sent", send_callback)

,您可以在发送当前块后发送另一块数据
local response = {
    'HTTP/1.1 200 OK\n\n',
    '<!DOCTYPE HTML>\n<html>\n<head><meta content="text/html; charset=utf-8">\n<title>Device Configuration</title></head>\n<body>\n<form action="/" method="POST">\n'
}
local function sender(conn)
    if #response>0 then conn:send(table.remove(response,1))
        else conn:close()
    end
end
conn:on("sent", sender)
sender(conn)