You've already forked Neopixel_board
mirror of
https://github.com/m5stack/Neopixel_board.git
synced 2026-05-20 10:25:05 -07:00
21 lines
390 B
C
21 lines
390 B
C
|
|
#ifndef __DISPLATCURRENTTIME_H
|
|
#define __DISPLATCURRENTTIME_H
|
|
#include "FastLED.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define NUM_LEDS 192
|
|
extern CRGB leds[NUM_LEDS];
|
|
extern void LightallLeds();
|
|
extern void displayCurrentTime(uint16_t time4Day);
|
|
extern void diaplayPoint();
|
|
extern void clearPoint();
|
|
extern void clearLeds();
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|