mirror of
https://github.com/m5stack/M5StickC.git
synced 2026-05-20 10:25:54 -07:00
20 lines
339 B
C
20 lines
339 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 displayCurrentTime(uint16_t time4Day);
|
|
extern void diaplayPoint();
|
|
extern void clearPoint();
|
|
extern void clearLeds();
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|