I wanted to ask for help in researching appropriate Microcontrollers to create a Wireless Artnet/sACN Node for DMX communications with film and stage lighting Fixtures. The ultimate goal for the system is to have a mesh network of Nodes that are capable of putting out realtime DMX frames at 44fps. the main reason for a mesh system is to allow a user to control lighting fixtures from an Ipad and allow them to move freely around the stage without worrying about loosing signal connection.
At the moment I've been experimenting with an ESP32 Devboard from Sparkfun and their DMX shield. I've used their example libraries (here) as well as another Arnet Library for the ESP32 (here). I'm still looking into other libraries but so far the ones I have tried all "stutter" (only send one frame of DMX every second or so), then crash after a while and I can't find the bug int the code. I run the ESP32 Module as a wireless access point and this appears to be a cause.
My main question is would it be best to use 2 Microcontrollers for the nodes say an ESP32 for the wifi mesh and Artnet aspects and then an ATmega or Cortex-M4F /ARM Cortex-M7 (teensy 3.0/teensy 4.0) or something else to output the DMX information to the fixutre? Or would it be best to stick with a single microcontroller? Also how does the Serial buffer size affect the ability to output the information of a 512 channel universe, would a 256byte buffer be too small? What other factors, hardware wise would limit its ability to perform constantly for long periods of time?
If it isn't obvious yet I'm fairly new to all of this and exploring out of interest so please be kind. ;)