sstaub / Ethernet3

Ethernet library for Arduino and Ethernetshield2 / WIZ550io / WIZ850io / USR-ES1 with Wiznet W5500 chip
Other
82 stars 33 forks source link

Udp Multicast #27

Closed Stanleyvc closed 5 years ago

Stanleyvc commented 5 years ago

Hai,

With Ethernet3 is it possible te sent and receive Multicast messages?

How can I do?

Thanks.

sstaub commented 5 years ago

EthernetUdp udp upd.beginMulticast(multicastIP, port); it is also described at the readme and the official Arduino API documentation.

sstaub commented 5 years ago

port must a 16bit variable, uint16_t MPORT = 8910;

Stanleyvc commented 5 years ago

Thanks.