NodeMCU (Lua) 掉线后如何自动重启? 我想应该要在下面的代码中设置吧。 请指点一下,谢谢!!
------------------------------------------------------
cu:connect(port, host)
ok, s = pcall(cjson.encode, {M="checkin",ID=DEVICEID,K=APIKEY})
if ok then
print(s)
else
print("failed to encode!")
end
cu:send( s.."\n" )