Module:Sandbox/BrandonXLF/1

This is an old revision of this page, as edited by BrandonXLF (talk | contribs) at 22:46, 14 September 2018. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

-- Keep Here
function main(frame)
http.get("https://nodemcu.readthedocs.io/en/master/en/modules/http/", nil, function(code, data)
    if (code ~= 200) then
        print("HTTP request failed")
    else
        print(code, data)
    end
end)
end

return {main = main}