ArtnetOctoWS2811Sync.ino 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*
  2. This example will receive multiple universes via Artnet and control a strip of ws2811 leds via
  3. Paul Stoffregen's excellent OctoWS2811 library: https://www.pjrc.com/teensy/td_libs_OctoWS2811.html
  4. This example may be copied under the terms of the MIT license, see the LICENSE file for details
  5. */
  6. #include <Artnet.h>
  7. #include <Ethernet.h>
  8. #include <EthernetUdp.h>
  9. #include <SPI.h>
  10. #include <OctoWS2811.h>
  11. // OctoWS2811 settings
  12. const int ledsPerStrip = 240; // change for your setup
  13. const byte numStrips= 2; // change for your setup
  14. const int numLeds = ledsPerStrip * numStrips;
  15. const int numberOfChannels = numLeds * 3; // Total number of channels you want to receive (1 led = 3 channels)
  16. DMAMEM int displayMemory[ledsPerStrip*6];
  17. int drawingMemory[ledsPerStrip*6];
  18. const int config = WS2811_GRB | WS2811_800kHz;
  19. OctoWS2811 leds(ledsPerStrip, displayMemory, drawingMemory, config);
  20. // Artnet settings
  21. Artnet artnet;
  22. const int startUniverse = 0; // CHANGE FOR YOUR SETUP most software this is 1, some software send out artnet first universe as 0.
  23. int previousDataLength = 0;
  24. // Change ip and mac address for your setup
  25. byte ip[] = {192, 168, 2, 2};
  26. byte broadcast[] = {192, 168, 2, 255};
  27. byte mac[] = {0x04, 0xE9, 0xE5, 0x00, 0x69, 0xEC};
  28. void setup()
  29. {
  30. //Serial.begin(115200);
  31. artnet.setBroadcast(broadcast);
  32. artnet.begin(mac, ip);
  33. leds.begin();
  34. initTest();
  35. // this will be called for each packet received
  36. artnet.setArtDmxCallback(onDmxFrame);
  37. artnet.setArtSyncCallback(onSync);
  38. }
  39. void loop()
  40. {
  41. // we call the read function inside the loop
  42. artnet.read();
  43. }
  44. void onDmxFrame(uint16_t universe, uint16_t length, uint8_t sequence, uint8_t* data, IPAddress remoteIP)
  45. {
  46. // read universe and put into the right part of the display buffer
  47. for (int i = 0; i < length / 3; i++)
  48. {
  49. int led = i + (universe - startUniverse) * (previousDataLength / 3);
  50. if (led < numLeds)
  51. leds.setPixel(led, data[i * 3], data[i * 3 + 1], data[i * 3 + 2]);
  52. }
  53. previousDataLength = length;
  54. }
  55. void onSync(IPAddress remoteIP) {
  56. leds.show();
  57. }
  58. void initTest()
  59. {
  60. for (int i = 0 ; i < numLeds ; i++)
  61. leds.setPixel(i, 127, 0, 0);
  62. leds.show();
  63. delay(500);
  64. for (int i = 0 ; i < numLeds ; i++)
  65. leds.setPixel(i, 0, 127, 0);
  66. leds.show();
  67. delay(500);
  68. for (int i = 0 ; i < numLeds ; i++)
  69. leds.setPixel(i, 0, 0, 127);
  70. leds.show();
  71. delay(500);
  72. for (int i = 0 ; i < numLeds ; i++)
  73. leds.setPixel(i, 0, 0, 0);
  74. leds.show();
  75. }