Go to file
per1234 57dd3942e1
Use correct filename case for keywords.txt
Use of filename case other than exactly keywords.txt causes the file to not be recognized by the Arduino IDE on a filename case-sensitive OS such as Linux.

Reference:
https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5:-Library-specification#keywords
2019-05-07 21:35:37 -07: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.