Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pfeerick/elapsedmillis

Arduino 'port' of the elapsedMillis library
https://github.com/pfeerick/elapsedmillis

arduino library timing

Last synced: 2 days ago
JSON representation

Arduino 'port' of the elapsedMillis library

Awesome Lists containing this project

README

        

elapsedMillis
=============
[![Latest Release](https://img.shields.io/github/v/release/pfeerick/elapsedMillis)](https://github.com/pfeerick/elapsedMillis/releases) [![Examples Build Status](https://github.com/pfeerick/elapsedMillis/workflows/build/badge.svg)](https://github.com/pfeerick/elapsedMillis/actions)

The elapsedMillis, elapsedMicros, and elapsedSeconds special variable types (objects) automatically increase as time elapses. This makes it easy to check if a certain time has elapsed, while allowing your program to perform other work or checks for user input. It is also very easy to handle multiple tasks requiring different delays.

Documentation on how to use this library is located in the [wiki](https://github.com/pfeerick/elapsedMillis/wiki) and also on the [Arduino Playground](https://playground.arduino.cc/Code/ElapsedMillis/).

Please report any bugs or issues you find on the [issue tracker](https://github.com/pfeerick/elapsedMillis/issues).

Initial code derived from Paul Stoffregen's elapsedMillis and elapsedMicros helper code for the Teensy USB developer board. Code contributes and initial examples created by John Plocher.