14 lines
278 B
C
14 lines
278 B
C
#ifndef WLED_OVERLAYS_H
|
|
#define WLED_OVERLAYS_H
|
|
#include <Arduino.h>
|
|
/*
|
|
* Used to draw clock overlays over the strip
|
|
*/
|
|
|
|
void initCronixie();
|
|
void handleOverlays();
|
|
void handleOverlayDraw();
|
|
void _overlayAnalogCountdown();
|
|
void _overlayAnalogClock();
|
|
|
|
#endif // WLED_OVERLAY_H
|