2020-03-28 13:30:51 +01:00
|
|
|
#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();
|
|
|
|
|
2020-03-25 09:00:55 +01:00
|
|
|
#endif // WLED_OVERLAY_H
|