I need connect C# (server station) with about 20 client station (use Ethernet Shield + Arduino Uno R3 for every station), I use method comunication UDP.
Every Client station use about 5-10 input/output. Status of input/output update about ms per times.
I connected with a station, but servser Stop (don't control) because data update continous if time sampling better than 700ms
Pls support to me method of these problems?
Thanks so much,
wildbill:
Are you sending one UDP packet per sensor reading or one per client station? How frequently? Can you get it to work with fewer clients to start with.
Have you been able to establish the desired communication between the UDP server and a single arduino UDP client? If so, then the clients may be flooding the server when you add more clients. How do you control which client is sending?
zoomkat:
Have you been able to establish the desired communication between the UDP server and a single arduino UDP client? If so, then the clients may be flooding the server when you add more clients. How do you control which client is sending?