Music streamed via Art-Net DMX via WiFi. Not as great as others in here but still working on it
@Darren_Hedlund which animation software are you using ?
@Yves_BAZIN PixelInvaderhttps://http://github.com/neophob/PixelController
@Darren_Hedlund thw i will test that
@Yves_BAZIN Gives you some nice features, but you do have to play around with the config file. Once you get the hang of it, it works great.
@Darren_Hedlund which board are you using ? which library ?
@Yves_BAZIN ESP32 and the library is the one you originally created with my added fluffiness. lol Speaking of. Now I have to get Artnode/broadcast working versus unicast direct ip. Still have the other pixels to try, but trying to make sure everything is happy happy first.
@Darren_Hedlund great job
@Yves_BAZIN I am trying… Still struggling with broadcast though, but got the parallel output working as well as I made it compatible for both 8266 and 32. Still have more work to do, but so far works. lol
@Yves_BAZIN This part gets me.
Fro broadcast, I tried this in the setup:
byte ip[] = {10, 0, 1, 199};
byte broadcast[] = {10, 0, 1, 255};
byte mac[] = {0x04, 0xE9, 0xE5, 0x00, 0x69, 0xEC};
artnet.begin(mac, ip);
artnet.setBroadcast(broadcast);
For set IP currently I just do artnet.begin(NUM_LEDS,UniverseNeeded);
then in the read I use your FastLEDshowESP322();
Works like a charm, but when I try to switch to using setBroadcast, I get nothing. So clearly i am missing something, just have to figure it out.
@Darren_Hedlund could you share your code ? I will look at it