mirror of
https://github.com/ADElectronics/RTL00_WEB_WS2812.git
synced 2025-01-30 16:15:18 +00:00
18 lines
364 B
C
18 lines
364 B
C
#ifndef _LEDEFFECTSSERVER_H_
|
|
#define _LEDEFFECTSSERVER_H_
|
|
|
|
#include "ledfilters.h"
|
|
|
|
|
|
// Ïóáëè÷íûå êîíôèíãè ôèëüòðîâ
|
|
extern strip_handler_t strip;
|
|
extern ctx_rainbow_t filt_rainbow;
|
|
extern ctx_fade_t filt_fade;
|
|
extern ctx_const_t filt_const;
|
|
extern ctx_wave_t filt_wave;
|
|
|
|
void ledEffectsServer_Init();
|
|
void ledEffectsServer_Task();
|
|
|
|
#endif // _LEDEFFECTSSERVER_H_
|
|
|