1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2025-12-16 15:33:05 +01:00

only link FastLED stuff when GWLED_FASTLED is defined

This commit is contained in:
andreas
2024-09-19 19:51:28 +02:00
parent d63b4d1661
commit 55145726c3
2 changed files with 45 additions and 36 deletions

View File

@@ -1,8 +1,9 @@
#ifndef _GWLEDS_H
#define _GWLEDS_H
#include "GwApi.h"
//task function
void handleLeds(GwApi *param);
//task init function
DECLARE_USERTASK(handleLeds);
void initLeds(GwApi *param);
DECLARE_INITFUNCTION(initLeds);
#endif