PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

93 lines
3.2KB

  1. /* OctoWS2811 - High Performance WS2811 LED Display Library
  2. http://www.pjrc.com/teensy/td_libs_OctoWS2811.html
  3. Copyright (c) 2013 Paul Stoffregen, PJRC.COM, LLC
  4. Permission is hereby granted, free of charge, to any person obtaining a copy
  5. of this software and associated documentation files (the "Software"), to deal
  6. in the Software without restriction, including without limitation the rights
  7. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  8. copies of the Software, and to permit persons to whom the Software is
  9. furnished to do so, subject to the following conditions:
  10. The above copyright notice and this permission notice shall be included in
  11. all copies or substantial portions of the Software.
  12. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  13. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  14. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  15. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  16. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  17. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  18. THE SOFTWARE.
  19. */
  20. #ifndef OctoWS2811_h
  21. #define OctoWS2811_h
  22. #include <Arduino.h>
  23. #ifdef __AVR__
  24. #error "Sorry, OctoWS2811 only works on 32 bit Teensy boards. AVR isn't supported."
  25. #endif
  26. #if TEENSYDUINO < 121
  27. #error "Teensyduino version 1.21 or later is required to compile this library."
  28. #endif
  29. #include "DMAChannel.h"
  30. #define WS2811_RGB 0 // The WS2811 datasheet documents this way
  31. #define WS2811_RBG 1
  32. #define WS2811_GRB 2 // Most LED strips are wired this way
  33. #define WS2811_GBR 3
  34. #define WS2811_BRG 4
  35. #define WS2811_BGR 5
  36. #define WS2811_800kHz 0x00 // Nearly all WS2811 are 800 kHz
  37. #define WS2811_400kHz 0x10 // Adafruit's Flora Pixels
  38. #define WS2813_800kHz 0x20 // WS2813 are close to 800 kHz but has 300 us frame set delay
  39. class OctoWS2811 {
  40. public:
  41. #if defined(__IMXRT1062__)
  42. // Teensy 4.x can use any arbitrary group of pins!
  43. OctoWS2811(uint32_t numPerStrip, void *frameBuf, void *drawBuf, uint8_t config = WS2811_GRB, uint8_t numPins = 8, const uint8_t *pinList = defaultPinList);
  44. void begin(uint32_t numPerStrip, void *frameBuf, void *drawBuf, uint8_t config = WS2811_GRB, uint8_t numPins = 8, const uint8_t *pinList = defaultPinList);
  45. int numPixels(void);
  46. #else
  47. // Teensy 3.x is fixed to 8 pins: 2, 14, 7, 8, 6, 20, 21, 5
  48. OctoWS2811(uint32_t numPerStrip, void *frameBuf, void *drawBuf, uint8_t config = WS2811_GRB);
  49. void begin(uint32_t numPerStrip, void *frameBuf, void *drawBuf, uint8_t config = WS2811_GRB);
  50. int numPixels(void) {
  51. return stripLen * 8;
  52. }
  53. #endif
  54. void begin(void);
  55. void setPixel(uint32_t num, int color);
  56. void setPixel(uint32_t num, uint8_t red, uint8_t green, uint8_t blue) {
  57. setPixel(num, color(red, green, blue));
  58. }
  59. int getPixel(uint32_t num);
  60. void show(void);
  61. int busy(void);
  62. int color(uint8_t red, uint8_t green, uint8_t blue) {
  63. return (red << 16) | (green << 8) | blue;
  64. }
  65. private:
  66. static uint16_t stripLen;
  67. static void *frameBuffer;
  68. static void *drawBuffer;
  69. static uint8_t params;
  70. static DMAChannel dma1, dma2, dma3;
  71. static void isr(void);
  72. static uint8_t defaultPinList[8];
  73. };
  74. #endif