码迷,mamicode.com
首页 > 其他好文 > 详细

ESP8266内置的定时器库--Ticker库

时间:2019-07-16 12:27:29      阅读:523      评论:0      收藏:0      [点我收藏+]

标签:active   回调   call   count   返回   例子   put   网络   margin   

Ticker的功能非常简单,就是规定时间后调用函数
技术图片

 

总体上,根据功能可以把方法分为两大类:
定时器管理方法;
定时器启用方法;

 

detach()     停止定时器
active()    定时器是否工作
返回值  bool

 

void once(float seconds, callback_function_t callback);     xx秒后只执行一次
seconds 秒数
callback 回调函数

 void once_ms(float seconds, callback_function_t callback)     xx毫秒后只执行一次

 

void attach(float seconds, callback_function_t callback);     每隔xx秒周期性执行
void attach_ms(float seconds, callback_function_t callback);    每隔xx毫秒周期性执行
注意点:
不建议使用Ticker回调函数来阻塞IO操作(网络、串口、文件);可以在Ticker回调函数中设置一个标记,在loop函数中检测这个标记;
对于arg,必须是 char, short, int, float, void*, char* 之一;

 

例子一:

#include <Ticker.h>  //导入定时器库
Ticker flipper;  //实例化定时器对象
int count = 0;
void flip() {     //回调函数
  int state = digitalRead(LED_BUILTIN);  
  digitalWrite(LED_BUILTIN, !state);  
  ++count;
  if (count == 20) {
    flipper.attach(0.1, flip);  //每隔0.1秒执行一次回调函数
  }
  else if (count == 120) {
    flipper.detach();
  }
}

void setup() { 
pinMode(LED_BUILTIN, OUTPUT);
digitalWrite(LED_BUILTIN, LOW);
flipper.attach(0.5, flip);//每隔0.5秒执行一次回调函数
}
void loop() { 

 }
      

 

 

 

 

 

 

天子骄龙

ESP8266内置的定时器库--Ticker库

标签:active   回调   call   count   返回   例子   put   网络   margin   

原文地址:https://www.cnblogs.com/liming19680104/p/11194077.html

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