ArtnetNeoPixelSync.ino 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*
  2. This example will receive multiple universes via Artnet and control a strip of ws2811 leds via
  3. Adafruit's NeoPixel library: https://github.com/adafruit/Adafruit_NeoPixel
  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 <Adafruit_NeoPixel.h>
  11. // Neopixel settings
  12. const int numLeds = 240; // change for your setup
  13. const int channelsPerLed = 3;
  14. const int numberOfChannels = numLeds * channelsPerLed; // Total number of channels you want to receive (1 led = 3 channels)
  15. const byte dataPin = 2;
  16. Adafruit_NeoPixel leds = Adafruit_NeoPixel(numLeds, dataPin, NEO_GRB + NEO_KHZ800);
  17. // Artnet settings
  18. Artnet artnet;
  19. const int startUniverse = 0; // CHANGE FOR YOUR SETUP most software this is 1, some software send out artnet first universe as 0.
  20. int previousDataLength = 0;
  21. // Change ip and mac address for your setup
  22. byte ip[] = {10, 0, 1, 199};
  23. byte mac[] = {0x04, 0xE9, 0xE5, 0x00, 0x69, 0xEC};
  24. byte broadcast[] = {10, 0, 1, 255};
  25. void setup()
  26. {
  27. //Serial.begin(115200);
  28. artnet.begin(mac, ip);
  29. leds.begin();
  30. artnet.setBroadcast(broadcast);
  31. initTest();
  32. // this will be called for each packet received
  33. artnet.setArtDmxCallback(onDmxFrame);
  34. artnet.setArtSyncCallback(onSync);
  35. }
  36. void loop()
  37. {
  38. // we call the read function inside the loop
  39. artnet.read();
  40. }
  41. void onDmxFrame(uint16_t universe, uint16_t length, uint8_t sequence, uint8_t* data, IPAddress remoteIP)
  42. {
  43. // read universe and put into the right part of the display buffer
  44. for (int i = 0; i < length / channelsPerLed; i++)
  45. {
  46. int led = i + (universe - startUniverse) * (previousDataLength / channelsPerLed);
  47. if (led < numLeds) {
  48. if (channelsPerLed == 4)
  49. leds.setPixelColor(led, data[i * channelsPerLed], data[i * channelsPerLed + 1], data[i * channelsPerLed + 2], data[i * channelsPerLed + 3]);
  50. if (channelsPerLed == 3)
  51. leds.setPixelColor(led, data[i * channelsPerLed], data[i * channelsPerLed + 1], data[i * channelsPerLed + 2]);
  52. }
  53. }
  54. previousDataLength = length;
  55. }
  56. void onSync(IPAddress remoteIP) {
  57. leds.show();
  58. }
  59. void initTest()
  60. {
  61. for (int i = 0 ; i < numLeds ; i++)
  62. leds.setPixelColor(i, 127, 0, 0);
  63. leds.show();
  64. delay(500);
  65. for (int i = 0 ; i < numLeds ; i++)
  66. leds.setPixelColor(i, 0, 127, 0);
  67. leds.show();
  68. delay(500);
  69. for (int i = 0 ; i < numLeds ; i++)
  70. leds.setPixelColor(i, 0, 0, 127);
  71. leds.show();
  72. delay(500);
  73. for (int i = 0 ; i < numLeds ; i++)
  74. leds.setPixelColor(i, 0, 0, 0);
  75. leds.show();
  76. }