I'm building an LED project running with FastLED (I usually use Teensy). The centerpiece structure would be the "master", with a varying number of slave pieces around it.
Basically I'd like to load up the same number of animations (modes) in each piece. Each animation has a number (uint8_t ledMode). Each piece would be programmed with the corresponding mode, but each could also react differently to it.
My first objective would be to broadcast the current mode to each slave when I change the mode of the master. So I would only need to change the mode on the master for the entire project to display the same mode.
To put it simply, I want to send an uint8_t from a master board to any number of slaves that are currently listening.
Is this feasible on and ESP8266 using Arduino? I'm looking for examples or relevant documentation.
Thank you so much