Go to file
Joaquin Villalba 79d07380b8
Update library.properties
2018-10-26 12:10:24 -03:00
examples/blinking Ret_M v1.0 2018-10-18 03:38:17 -03:00
KEYWORDS.txt 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
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.