Can Arduino receive a string that contains non-printing Ascii characters?

Can Arduino receive a string from another device that contains non-printing Ascii characters? They are actually used for prefix, separator and postfix, with words of regular chars in between - the goal is to remove prefix and postfix, replace the separator with a newline (\n) and send the result to a 3rd device (a Smartphone App).

Yes, no problem.

Edited: Yes, it can. Or you treat it as binary stream.

Non-printing ASCII characters should not present any problems, and the string functions should work as long as you do not have a NUL character, since a null indicates the end of a string.

Thanks for the swift replies everyone.

This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.