Go to file
Joaquin Villalba d916eaec4e
Merge pull request #1 from per1234/keywords_txt-filename-case
Use correct filename case for keywords.txt
2020-10-19 21:38:55 -03:00
examples/blinking Ret_M v1.0 2018-10-18 03:38:17 -03:00
LICENSE Initial commit 2018-10-18 02:17:37 -03:00
README.md Update README.md 2018-10-18 03:39:55 -03:00
Ret_M.cpp Ret_M v1.0 2018-10-18 03:38:17 -03:00
Ret_M.h Ret_M v1.0 2018-10-18 03:38:17 -03:00
keywords.txt Use correct filename case for keywords.txt 2019-05-07 21:35:37 -07:00
library.properties Update library.properties 2018-10-26 12:10:24 -03:00

README.md

Ret_M Arduino Library

Small library to simplify applying delays utilizing the millis() function. Ideal for time sensitive projects, debouncing, or for those who want to avoid using delay(), delayMicroseconds(), or other of the kind that halts the program.

Usage

  • Include Ret_M.h: #include "Ret_M.h"
  • Initialize a delay: Ret_M name(interval);
  • name.ret() returns true if the interval has passed.