码迷,mamicode.com
首页 > 编程语言 > 详细

ESP8266 LUA脚本语言开发: 外设篇-定时器,延时,看门狗

时间:2019-12-14 09:25:20      阅读:343      评论:0      收藏:0      [点我收藏+]

标签:使用   soft   learn   targe   img   height   mic   blank   module   

 

 

 

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

 

技术图片

 

 

 

local mytimer1 = tmr.create() 

function TimeFunction1()
    print("1S 循环定时器")
end

mytimer1:register(1000, 1, TimeFunction1)

mytimer1:start()



local mytimer2 = tmr.create() 

function TimeFunction2()
    print("1S 一次定时器")
end

mytimer2:register(1000, 0, TimeFunction2)

mytimer2:start()

 

 技术图片

 

 

 

 提示:

技术图片

 

 

 

 

其它 (硬延时 us)

技术图片

 

 

 

延时 100us

 

tmr.delay(100)

 

注:不建议使用.

 

其它 (看门狗)

 

技术图片

 

 

 

 

启用5S看门狗

tmr.softwd(5)

 

 

喂狗

tmr.wdclr()

 

ESP8266 LUA脚本语言开发: 外设篇-定时器,延时,看门狗

标签:使用   soft   learn   targe   img   height   mic   blank   module   

原文地址:https://www.cnblogs.com/yangfengwu/p/12038009.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!