mirror of
https://github.com/paperdash/device-epd.git
synced 2024-11-10 07:10:32 +00:00
8 lines
233 B
C
8 lines
233 B
C
|
#ifndef TOOLS_H
|
||
|
#define TOOLS_H
|
||
|
|
||
|
#define EVERY_N_SECONDS(t) for (static uint16_t _lasttime; \
|
||
|
(uint16_t)((uint16_t)millis() - _lasttime) >= (t * 1000); \
|
||
|
_lasttime += (t * 1000))
|
||
|
|
||
|
#endif
|