Usage:
- run function blinkLED() every 2000 ms:
timer.addEverytime(2000, blinkLED);

- run function itWorks() two times with interval 2000 ms, wait 300 ms before first start:
timer.addTask(2000, 2, 300, itWorks);

Removing a task:
removeEverytime(callback_function);
removeTask(callback_function);

Library can also be used in desktop C++ applications:
#include <iostream>
#include <string>
#include <chrono>
#include <thread>
#include "RZtimer.h"
int main()
{
RZTimer timer;
timer.addEverytime(2000, [] (){ std::cout << "Hello! " << std::chrono::duration_cast<std::chrono::milliseconds >(
std::chrono::system_clock::now().time_since_epoch()
).count() << "\n";});
while(1){
timer.run();
std::this_thread::sleep_for(std::chrono::milliseconds(100));
}
}

Project Samples

Project Activity

See All Activity >

Categories

Libraries

Follow Arduino Timer Library RZtimer

Arduino Timer Library RZtimer Web Site

Other Useful Business Software
Your top-rated shield against malware and online scams | Avast Free Antivirus Icon
Your top-rated shield against malware and online scams | Avast Free Antivirus

Browse and email in peace, supported by clever AI

Our antivirus software scans for security and performance issues and helps you to fix them instantly. It also protects you in real time by analyzing unknown files before they reach your desktop PC or laptop — all for free.
Free Download
Rate This Project
Login To Rate This Project

User Reviews

Be the first to post a review of Arduino Timer Library RZtimer!

Additional Project Details

Programming Language

C++

Related Categories

C++ Libraries

Registered

2018-08-24