DisplayCurrentTime.h 342 B

1234567891011121314151617181920
  1. #ifndef __DISPLATCURRENTTIME_H
  2. #define __DISPLATCURRENTTIME_H
  3. #include "FastLED.h"
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. #define NUM_LEDS 192
  8. extern CRGB leds[NUM_LEDS];
  9. extern void displayCurrentTime(uint16_t time4Day);
  10. extern void diaplayPoint();
  11. extern void clearPoint();
  12. extern void clearLeds();
  13. #ifdef __cplusplus
  14. }
  15. #endif
  16. #endif