Ret_M/README.md

10 lines
458 B
Markdown
Raw Permalink Normal View History

2018-10-17 23:38:17 -07:00
Ret_M Arduino Library
===========================================
2018-10-17 23:39:30 -07:00
Small library to simplify applying delays utilizing the millis() function.
2018-10-17 23:39:55 -07:00
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.
2018-10-17 23:38:17 -07:00
### Usage
2018-10-17 23:39:13 -07:00
- Include Ret_M.h: #include "Ret_M.h"
- Initialize a delay: Ret_M name(interval);
- name.ret() returns true if the interval has passed.