代码拉取完成,页面将自动刷新
同步操作将从 zhangoneone/nodemcu 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
main = {}
main.co = nil
local weat_cron_tmr
local net_cron_tmr
local function weather_cron_task()
--local ret = json.decode_weather()
--gui_mgr.desire_update(gui_src.weather_display)
end
local function net_cron_task()
gui_mgr.desire_update(gui_src.net_config_display)
end
local function step1_main()
wifi_mgr.wifi_init('caiyuanzi', '12345678')
gui_mgr.gui_init(5,6)
ntp.set_ntp(0)
net_cron_tmr = tmr.create()
net_cron_tmr:register(3000, tmr.ALARM_AUTO, net_cron_task)
net_cron_tmr:start()
end
local function step2_main()
weat_cron_tmr = tmr.create()
weat_cron_tmr:register(2000, tmr.ALARM_AUTO, weather_cron_task)
weat_cron_tmr:start()
net_cron_tmr:unregister()
end
local function lua_main()
--这里执行上电后就可以做的事情,一般是初始化
step1_main()
local step1 = coroutine.yield()
--这里执行联网后可以做的事情
step2_main()
local step2 = coroutine.yield()
--这里执行loop的事情
while true do
local step3 = coroutine.yield()
end
end
function main.start()
main.co = coroutine.create(lua_main)
local status, val = coroutine.resume(main.co)
if status == false then
print("main start fail\n")
end
end
main.start()
return main
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。