Arduino Uno data processing from 5 zigbee nodes

Hi Guys,

I have recently started working on Arduino Uno and Zigbee Series 2 modules.

need your help around how should process the data in arduino coming from 4 Zigbee nodes.

Scenario:

4 Zigbee transmitter is sending unique bit to Receiver module (Arduino Uno), I need to send the complete data as string to the server from Arduino. I am able to send data through single call out but not all data in one call out.

Please help

need your help around how should process the data in arduino coming from 4 Zigbee nodes.

That depends on how the 4 XBees send the data.

Are they attached to Arduinos that are sending the data, or are the XBees operating by themselves?

I need to send the complete data as string

So, the first thing you need to do is to define what "complete data" means, and how you will recognize it when it arrives.

Are the senders blabbing away when they feel like it, or are then sending data in response to a request from the coordinator?

There is too much missing from your post to really be able to help you.

My Assumptions

  • Coordinator module can able to receive data from 4 nodes.
  • Your Arduino code is processing the data received from the coordinator.
  • Once the processing is done, you need to post it to some server program.

What kind of server program running in the server?
Do you have any restriction in Server program not to receive lengthy string.
Did you check whether your "Complete Data" holds all what you wanted? Serial print can identify that.