Has Anyone used Art-Net nodename WiFi.setHostname("ESP32NodeName");

Has Anyone used Art-Net nodename
WiFi.setHostname(“ESP32NodeName”);
or Art-Net broadcast address to control more then one ESP32 with FastLED?
@Yves_BAZIN Tis me again! LOL

I know I can force an IP by using
IPAddress Ip(192, 168, 1, xx);

// STA Static IP
if(!WiFi.config(IPAddress(Ip), IPAddress(10, 0, 0, 1), IPAddress(2,255,255,255), IPAddress(10, 0, 0, 1)))
But never seems to work for Art-Net broadcast.

@Darren_Hedlund I need to get into that broadcasting functionality of artnet.
Try this fork

@Yves_BAZIN I also was looking at this one. Not FastLEd.

Will have to try this:
byte broadcast[] = {10, 0, 1, 255};

artnet.setBroadcast(broadcast);

void Artnet::setBroadcast(byte bc[]) {
//sets the broadcast address
broadcast = bc;
}

This one was hiding from me. lol https://github.com/X-WL/Artnet-NODE

@Darren_Hedlund To work with broads, you must send the ArtReply package. In my commit it is broken, I will fix it in the near future

@X-WL1 Your code too this point is great, been learning more and more.