ESP8266 + uart,阻止esp

时间:2017-05-09 12:53:57

标签: lua uart esp8266 nodemcu

我的esp有问题。当我尝试通过usart连接到stm32时esp具有'不同状态'并且必须再次闪烁。

固件:

enter image description here

我的节目:

print("plik")
uart.alt(1)
uart.setup(0, 9600, 8, uart.PARITY_NONE, uart.STOPBITS_1, 1)
uart.on("data", 25,
  function(data)
    print("receive from uart:", data)
    if data=="quit" then
      uart.on("data") -- unregister callback function
    end
end, 0)

效果:

enter image description here

你能告诉我esp没有做出任何反应吗?

0 个答案:

没有答案