ledStrip_control.h 548 B

12345678910111213141516171819202122232425
  1. #ifndef _LEDSTRIP_CONTROL_H_
  2. #define _LEDSTRIP_CONTROL_H_
  3. #define LEDSTRIP_PIN 24
  4. #define LED_COUNT 59 //the amount of the leds of your strip
  5. #define CLEAR_LIGHT 0
  6. #define STOPSTART_LIGHT 1
  7. #define ENABLESTART_LIGHT 2
  8. #define RAINBOW_LIGHT 11
  9. #define WIPE_RED 12
  10. #define WIPE_GREEN 13
  11. #define WIPE_BLUE 14
  12. #define CHASE_WHITE 15
  13. #define CHASE_RED 16
  14. #define CHASE_GREEN 17
  15. #define CHASE_BLUE 18
  16. void initLedStrip();
  17. void rainbowLight();
  18. void clearLEDs();
  19. #endif