k-yle/sACN

Unicast to a single IP?

waltsatan opened this issue · 3 comments

Is it possible to specify a single IP to send sACN data to?

k-yle commented

at the moment this isn't possible, but it seems like a reasonable request. the spec requires receivers to accept unicast data, and senders are permitted to send data to unicast addresses

k-yle commented

this is now supported as of v4.4.0 using a new option useUnicastDestination:

const sACNServer = new Sender({
  universe: 1,
  useUnicastDestination: '10.51.0.8'
});

Amazing! Thank you. I'll give it a go with my Advatek on Monday.