How to send and receiver the special date from a group date by RC.

I need send two kinds of dates by RC pair, one is like: 123, 234, 345, 456....; other one is like: 6565, 6666,6767,6868...
I have no idea how to sketch, thanks for any help.

One - these do not appear to be dates.
Two - can you explain where these number blocks are coming from, and going to?
Three - what do these ‘dates’ represent?
Four - how are they ‘special’? Is it the overlap/repeat pattern... perhaps it would be easier to process the results as a string in the ‘receiver’. These appear to be strings of some sort from their appearance.

And what do you mean by "RC Pair". If you mean a pair of wireless transceivers then tell us what type they are.

Please post your pair of programs.

...R

lastchancename:
One - these do not appear to be dates.
Two - can you explain where these number blocks are coming from, and going to?
Three - what do these ‘dates’ represent?
Four - how are they ‘special’? Is it the overlap/repeat pattern... perhaps it would be easier to process the results as a string in the ‘receiver’. These appear to be strings of some sort from their appearance.

Thank you.
One - these do not appear to be dates.

Two - can you explain where these number blocks are coming from, and going to?

The number blocks are designed to test the 433MHz RC wireless pair.
Three - what do these ‘dates’ represent?

Four - how are they ‘special’? Is it the overlap/repeat pattern... perhaps it would be easier to process the results as a string in the ‘receiver’. These appear to be strings of some sort from their appearance.
The special just means three digits different from four digits.

So we now know (possibly) less than when the thread started.
What’s special about these date/number sequences that will test the 433tx/rx pair?

Seems like something has been lost in translation.

lastchancename:
So we now know (possibly) less than when the thread started.
What’s special about these date/number sequences that will test the 433tx/rx pair?

Seems like something has been lost in translation.

Thank you.
I shouldn't say 'special', just want to extract the one kind from others without effect each other.

Ok
If this purely a receiver/ parser question, take a look at strtok() using the comma delimiters .
That will give you separated char strings, then use strlen() to test the length of each segment.

lastchancename:
Ok
If this purely a receiver/ parser question, take a look at strtok() using the comma delimiters .
That will give you separated char strings, then use strlen() to test the length of each segment.

Thank you,
I'll try it.