代码拉取完成,页面将自动刷新
同步操作将从 zhangoneone/nodemcu 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
gui_src = {}
function gui_src.net_config_display()
local disp = gui_mgr.get_disp()
disp:drawUTF8(40, 5, "wifi")
if wifi_mgr.ip ~= nil then
disp:drawUTF8(0, 20, "ip:"..wifi_mgr.ip)
else
disp:drawUTF8(0, 20, "ip:".."getting...")
end
--[[
if wifi_mgr.nm ~= nil then
disp:drawUTF8(0, 14, "nm:"..wifi_mgr.nm)
else
disp:drawUTF8(0, 14, "nm:".."getting...")
end
--]]
if wifi_mgr.gw ~= nil then
disp:drawUTF8(0, 35, "gw:"..wifi_mgr.gw)
else
disp:drawUTF8(0, 35, "gw:".."getting...")
end
--[[
if wifi_mgr.mac ~= nil then
disp:drawUTF8(0, 42, wifi_mgr.mac)
else
disp:drawUTF8(0, 42, "mac:".."getting...")
end
--]]
end
function gui_src.weather_display()
local disp = gui_mgr.get_disp()
local str1 = "--------"
local weat_map = {["晴"] = "sunny",["阴"] = "cloudy",["多云"] = "cloudy",["雨"] = "cloudy",}
local ymd, hms = ntp.get_tim_str2()
local t, h, we, wind = json.weather["temperature"],
json.weather["humidity"], json.weather["text"],
json.weather["wind_speed"]
if h ~=nil and t ~=nil then
str1 = t.."度".." "..h.."%".." "..weat_map[we]
end
--if we ~=nil and wind ~=nil then
-- str2 = "风力:"..wind
--end
disp:drawUTF8(10, 5, str1)
if ymd ~= nil then
disp:drawUTF8(20, 45, ymd)
else
disp:drawUTF8(20, 45, "----")
end
if hms ~= nil then
disp:drawUTF8(30, 25, hms)
else
disp:drawUTF8(30, 25, "----")
end
end
return gui_src
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。