标签:使用 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()
提示:
延时 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