apa102.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * light weight WS2812 lib include
  3. *
  4. * Version 2.3 - Nev 29th 2015
  5. * Author: Tim (cpldcpu@gmail.com)
  6. *
  7. * Please do not change this file! All configuration is handled in "ws2812_config.h"
  8. *
  9. * This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation, either version 2 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. */
  22. #pragma once
  23. #include <avr/io.h>
  24. #include <avr/interrupt.h>
  25. #include "color.h"
  26. /* User Interface
  27. *
  28. * Input:
  29. * ledarray: An array of GRB data describing the LED colors
  30. * number_of_leds: The number of LEDs to write
  31. * pinmask (optional): Bitmask describing the output bin. e.g. _BV(PB0)
  32. *
  33. * The functions will perform the following actions:
  34. * - Set the data-out pin as output
  35. * - Send out the LED data
  36. * - Wait 50�s to reset the LEDs
  37. */
  38. void apa102_setleds(LED_TYPE *ledarray, uint16_t number_of_leds);
  39. void apa102_setleds_pin(LED_TYPE *ledarray, uint16_t number_of_leds, uint8_t pinmask);
  40. void apa102_setleds_rgbw(LED_TYPE *ledarray, uint16_t number_of_leds);