LUA / NodeMCU中的HTTP GET

时间:2016-06-10 13:28:01

标签: lua nodemcu

每次按下按钮,我都会尝试发送HTTP GET:

wifi.setmode(wifi.STATION)
wifi.sta.config("SSID","PWD")
function loop() 
    if wifi.sta.status() == 5 then
        -- Stop the loop
        tmr.stop(0)
    else
        print("Connecting...")
    end
end
tmr.alarm(0, 100, 1, function() loop() end)
print(wifi.sta.getip())

outpin_led = 1
inpin_button = 3

gpio.mode(outpin_led,gpio.OUTPUT)
gpio.mode(inpin_button,gpio.INPUT)
light_on = false

function light()
    if not light_on then
        -- turn the light on
        gpio.write(outpin_led,gpio.HIGH)
        light_on = true
        http.get("https://google.com", function(clt, data)
            print(data)
        end)
    else
        -- turn the light off
        gpio.write(outpin_led,gpio.LOW)
        light_on = false
    end
end

gpio.trig(inpin_button,"down",light)

包含http.get的行正在抛出此错误消息:

> PANIC: unprotected error in call to Lua API (stdin:6: attempt to index global 'http' (a nil value))

我通过http

编译确保我的NodeMCU构建包含http://nodemcu-build.com/模块

有什么想法吗?

感谢。

1 个答案:

答案 0 :(得分:1)

正如MarcelStör所指出的那样,在固件刷新期间确实存在这个问题。

非常感谢您的回复和http://nodemcu-build.com/上的工作。