mirror of
https://github.com/OpenEPaperLink/OpenEPaperLink.git
synced 2026-03-21 09:04:24 +01:00
19 lines
403 B
C
19 lines
403 B
C
#include <Arduino.h>
|
|
|
|
#ifdef HAS_RGB_LED
|
|
#define FASTLED_INTERNAL
|
|
#include <FastLED.h>
|
|
#endif
|
|
|
|
void ledTask(void* parameter);
|
|
void setBrightness(int brightness);
|
|
void updateBrightnessFromConfig();
|
|
|
|
#ifdef HAS_RGB_LED
|
|
void shortBlink(CRGB cname);
|
|
void showColorPattern(CRGB colorone, CRGB colortwo, CRGB colorthree);
|
|
void rgbIdle();
|
|
void addFadeColor(CRGB cname);
|
|
#endif
|
|
|
|
void quickBlink(uint8_t repeat); |