You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
2.5 KiB

  1. /*
  2. * This program is free software: you can redistribute it and/or modify
  3. * it under the terms of the GNU General Public License as published by
  4. * the Free Software Foundation, either version 2 of the License, or
  5. * (at your option) any later version.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. * You should have received a copy of the GNU General Public License
  13. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. #pragma once
  16. #include "quantum/color.h"
  17. /*
  18. * The WS2812 datasheets define T1H 900ns, T0H 350ns, T1L 350ns, T0L 900ns. Hence, by default, these
  19. * are chosen to be conservative and avoid problems rather than for maximum throughput; in the code,
  20. * this is done by default using a WS2812_TIMING parameter that accounts for the whole window (1250ns)
  21. * and defining T1H and T0H; T1L and T0L are obtained by subtracting their low counterparts from the window.
  22. *
  23. * However, there are certain "WS2812"-like LEDs, like the SK6812s, which work in a similar
  24. * communication topology but use different timings for the window and the T1L, T1H, T0L and T0H.
  25. * This means that, albeit the same driver being applicable, the timings must be adapted.
  26. */
  27. #ifndef WS2812_TIMING
  28. # define WS2812_TIMING 1250
  29. #endif
  30. #ifndef WS2812_T1H
  31. # define WS2812_T1H 900 // Width of a 1 bit in ns
  32. #endif
  33. #ifndef WS2812_T1L
  34. # define WS2812_T1L (WS2812_TIMING - WS2812_T1H) // Width of a 1 bit in ns
  35. #endif
  36. #ifndef WS2812_T0H
  37. # define WS2812_T0H 350 // Width of a 0 bit in ns
  38. #endif
  39. #ifndef WS2812_T0L
  40. # define WS2812_T0L (WS2812_TIMING - WS2812_T0H) // Width of a 0 bit in ns
  41. #endif
  42. /*
  43. * Older WS2812s can handle a reset time (TRST) of 50us, but recent
  44. * component revisions require a minimum of 280us.
  45. */
  46. #if !defined(WS2812_TRST_US)
  47. # define WS2812_TRST_US 280
  48. #endif
  49. #if defined(RGBLIGHT_WS2812)
  50. # define WS2812_LED_COUNT RGBLIGHT_LED_COUNT
  51. #elif defined(RGB_MATRIX_WS2812)
  52. # define WS2812_LED_COUNT RGB_MATRIX_LED_COUNT
  53. #endif
  54. /* User Interface
  55. *
  56. * Input:
  57. * ledarray: An array of GRB data describing the LED colors
  58. * number_of_leds: The number of LEDs to write
  59. *
  60. * The functions will perform the following actions:
  61. * - Set the data-out pin as output
  62. * - Send out the LED data
  63. * - Wait 50us to reset the LEDs
  64. */
  65. void ws2812_setleds(rgb_led_t *ledarray, uint16_t number_of_leds);