#include <NexTimer.h>
Public Member Functions | |
NexTimer (uint8_t pid, uint8_t cid, const char *name) | |
void | attachTimer (NexTouchEventCb timer, void *ptr=NULL) |
void | detachTimer (void) |
bool | getCycle (uint32_t *number) |
bool | setCycle (uint32_t number) |
bool | enable (void) |
bool | disable (void) |
uint32_t | Get_cycle_tim (uint32_t *number) |
bool | Set_cycle_tim (uint32_t number) |
Public Member Functions inherited from NexTouch | |
NexTouch (uint8_t pid, uint8_t cid, const char *name) | |
void | attachPush (NexTouchEventCb push, void *ptr=NULL) |
void | detachPush (void) |
void | attachPop (NexTouchEventCb pop, void *ptr=NULL) |
void | detachPop (void) |
Public Member Functions inherited from NexObject | |
NexObject (uint8_t pid, uint8_t cid, const char *name) | |
void | printObjInfo (void) |
Additional Inherited Members | |
Static Public Member Functions inherited from NexTouch | |
static void | iterate (NexTouch **list, uint8_t pid, uint8_t cid, int32_t event) |
Protected Member Functions inherited from NexObject | |
uint8_t | getObjPid (void) |
uint8_t | getObjCid (void) |
const char * | getObjName (void) |
NexTimer component.
Commonly, you want to do something after set timer cycle and enable it,and the cycle value must be greater than 50
NexTimer::NexTimer | ( | uint8_t | pid, |
uint8_t | cid, | ||
const char * | name | ||
) |
Constructor.
pid | - page id. |
cid | - component id. |
name | - pointer to an unique name in range of all components. |
void NexTimer::attachTimer | ( | NexTouchEventCb | timer, |
void * | ptr = NULL |
||
) |
Attach an callback function of timer respond event.
timer | - callback called with ptr when a timer respond event occurs. |
ptr | - parameter passed into push[default:NULL]. |
void NexTimer::detachTimer | ( | void | ) |
Detach an callback function.
bool NexTimer::disable | ( | void | ) |
contorl timer disable.
true | - success. |
false | - failed. |
bool NexTimer::enable | ( | void | ) |
contorl timer enable.
true | - success. |
false | - failed. |
uint32_t NexTimer::Get_cycle_tim | ( | uint32_t * | number | ) |
Get tim attribute of component
number | - buffer storing data retur |
bool NexTimer::getCycle | ( | uint32_t * | number | ) |
Get the value of timer cycle val.
number | - an output parameter to save the value of timer cycle. |
true | - success. |
false | - failed. |
bool NexTimer::Set_cycle_tim | ( | uint32_t | number | ) |
Set tim attribute of component
number | - To set up the data |
bool NexTimer::setCycle | ( | uint32_t | number | ) |
Set the value of timer cycle val.
number | - the value of timer cycle. |
true | - success. |
false | - failed. |