ESP8266 LUA脚本语言开发: 外设篇-串口

 

<iframe frameborder="0" height="1500" name="ifd" scrolling="auto" src="https://mnif.cn/Learn8266ForLua" width="100%"></iframe>

 

 https://nodemcu.readthedocs.io/en/master/modules/uart/

 

串口发送数据

  ESP8266 LUA脚本语言开发: 外设篇-串口

 

 

发送一个16进制到串口

  uart.write(0, 0xaa)  

ESP8266 LUA脚本语言开发: 外设篇-串口

 

 

 

 ESP8266 LUA脚本语言开发: 外设篇-串口

 

 

 

注:

ESP8266 LUA脚本语言开发: 外设篇-串口

 

 

 之所以有后面的这两个是因为咱打印的时候其实单片机还没有完全运行完内部的程序

3E 代表 >      20是空

 

咱加个定时器,每隔1S打印

ESP8266 LUA脚本语言开发: 外设篇-串口

 

 

ESP8266 LUA脚本语言开发: 外设篇-串口

 

 

 

打印字符串

local mytimer1 = tmr.create() 

function TimeFunction1()
    uart.write(0, "hello 8266")
end

mytimer1:register(1000, 1, TimeFunction1)

mytimer1:start()

 

 

ESP8266 LUA脚本语言开发: 外设篇-串口

 

 

串口接收数据

  ESP8266 LUA脚本语言开发: 外设篇-串口

 

 

  ESP8266 LUA脚本语言开发: 外设篇-串口

 

 

 

接收到数据就把数据传入回调函数(常用)

uart.on("data", 0,
  function(dddd)
    uart.write(0,dddd)
  end
, 0)

 

"data" :代表注册的串口数据接收回调函数

0:         只要接收到数据就传给后面的回调函数的形参

 

function(dddd)  回调函数,数据传给了 dddd
 XXXXXX

   对串口接收的数据dddd做处理
end

 

0: 数据不进行LUA指令解析

    所有的数据都是靠串口

  下面这些指令也不例外

 ESP8266 LUA脚本语言开发: 外设篇-串口

 

 

 

典型处理形式

ESP8266 LUA脚本语言开发: 外设篇-串口

 

 

local UsartReceiveData;
local UsartReceiveDataCopy;
local UsartReceiveFlage=false;
local UsartIdleCnt = 0;


local TimerMs = tmr.create() 

TimerMs:register(1, 0,function TimerMsFunction()

    if  UsartReceiveFlage == true  then
        UsartIdleCnt = UsartIdleCnt +1;
        if  UsartIdleCnt > 10 then
            UsartIdleCnt = 0;
            UsartReceiveFlage = false
            UsartReceiveDataCopy = UsartReceiveData;
            UsartReceiveData = "";
        end
    end

    if  UsartReceiveDataCopy ~= nil  then
        uart.write(0,UsartReceiveDataCopy)  
        UsartReceiveDataCopy = nil
    end
end)
TimerMs:start()



uart.setup(0, 115200, 8, uart.PARITY_NONE, uart.STOPBITS_1)
uart.on("data",0,function(data)
    UsartReceiveData = UsartReceiveData..data;
    UsartReceiveFlage = true;
    UsartIdleCnt = 0;
end, 0)

 

参见:  https://www.cnblogs.com/yangfengwu/p/11669373.html     学的是思想,而非程序本身

 

测试

ESP8266 LUA脚本语言开发: 外设篇-串口

 

 

 

 

以后直接在这里处理数据

ESP8266 LUA脚本语言开发: 外设篇-串口

 

 

上一篇:单片机基础——使用USART发送和接收数据(查询模式)


下一篇:单片机基础——使用USART发送和接收数据(中断模式)