Sending string via XBee and

I am sending string from Arduino to Arduino via Xbee. I don't know if this is the proper way to do it and I am open to know any feedbacks. Here is what I do, I am sending something from A and  it looks like:

0|302|306|1|222|291|303|1|0|1|1|1|1

Now, B is getting this string and trying to analyze it. Here is my code:

 

  if (Serial.available() > 0) {

    char incomingString = Serial.read();

     Serial.print(incomingString);

     Serial.println(":");

 

It doesn't read the string but some single character. The line "char incomingByte = Serial.read();" should be the problem and I am not sure what is *sign for. Please help if anyone knows how to do this? Thanks a lot!

______________________________________________________________________FYI

I use this function to break the string into variable I need.

char* subStr (char* str, char *delim, int index) {

   char *act, *sub, *ptr;

   static char copy[MAX_STRING_LEN];

   int i;

   strcpy(copy, str);

   for (i = 1, act = copy; i <= index; i++, act = NULL) {

//Serial.print(".");

sub = strtok_r(act, delim, &ptr);

if (sub == NULL) break;

   }

   return sub;

}

And this always works while testing:

     Serial.println(subStr(incomingByte, "|", 1));

     Serial.println(subStr(incomingByte, "|", 2));

     Serial.println(subStr(incomingByte, "|", 3)); // and so on

It breaks to string into what I need.

Try split

I think split string is what you might want.

http://processing.org/reference/split_.html

You might find this helpful

You might find this helpful https://www.robotshop.com/letsmakerobots/node/27108

Idk if this can be used in

Idk if this can be used in the Arduino language

Oh man, Arduino

I’m sorry --I was looking at the code and thinking Processing. Sorry, this is arduino to arduino…

Yeah, listen to Pat.

Hi patrick, thansk for the

Hi patrick, thansk for the link. Yes it works. However, i don’t know if thats the way it works for having about 0.5~1 sec delay?

I have post it on youtube here:http://www.youtube.com/watch?v=z-fehe8BQgE

Let me know how do you think. Thanks~

Can you post your code you

Can you post your code you are using now on the transmitting and recieving end?

It’s the standard code that

It’s the standard code that you download with. Didn’t changed anything.

EasyTransfer v1.1

Well the original code does

Well the original code does not use LED strips and does not light up something on the TX side. So I am just wondering if what you added, plus the fact that it is sending random data is what is causing the delay.

Any way you can just setup a button that when pushed lights up the LED strip on the other Arduino? Something that simple would get rid of the other factors. 

Got it. Because of the delay

Got it. Because of the delay time. It was delay(2500), so it could be anytime in between 0~2500ms I think. I shorten it to 500 and it’s reacting much faster.

One more thing I always wondering; if I have delay(10) which is almost in real time. Does it effect anything? like decrease the performance or power consumption or anything else?

Thanks for your help~~