PLEASE ANYONE UPLOAD DMX MASTER AND SLAVE EXAMPLE TO CONTROL MANY LED STRIPS TO SYNC
Serial (250 kbaud) DMX or Ethernet Artnet DMX?
Here’s an Artnet example controlling 3968 LEDs.
// Receive multiple universes via Artnet and control a strip of ws2811 leds via OctoWS2811
//
// This example may be copied under the terms of the MIT license, see the LICENSE file for details
// https://github.com/natcl/Artnet
//
// http://forum.pjrc.com/threads/24688-Artnet-to-OctoWS2811?p=55589&viewfull=1#post55589
#include <Artnet.h>
#include <Ethernet.h>
#include <EthernetUdp.h>
#include <SPI.h>
#include <OctoWS2811.h>
// Ideas for improving performance with WIZ820io / WIZ850io Ethernet:
// https://forum.pjrc.com/threads/45760-E1-31-sACN-Ethernet-DMX-Performance-help-6-Universe-Limit-improvements
// OctoWS2811 settings
const int ledsPerStrip = 492; // change for your setup
const byte numStrips= 1; // change for your setup
DMAMEM int displayMemory[ledsPerStrip*6];
This file has been truncated. show original
you could use Jinx or Glediator.
Here is one for the ESP8266
Arduino library for Art-Net (artnet) over WiFi, send and receive DMX data. Runs on ESP8266, ESP32, WiFi101 and WiFiNINA devices.
And here is one for Arduino boards that arent wifi from Glediator
http://www.solderlab.de/index.php/downloads/file/33-ws2812-glediator-interface-v1
Not strictly FastLED-related, but this:
http://forkineye.com/espixelstick/
This is an sACN / E1.31 pixel controller (wireless DMX). I’ve built two using NodeMCU boards and his code and run them during the holiday season using Vixen, but other DMX software works well too. Works without problem. Configuration is easy & the code looks to be extensible.