Hi - I'm new to programming and I'm struggling with serial inputs.
For example, using the sample code provided by Robin2, I can obviously write and print arrays all day long however, inut a string such as:
"Some text here for a particular function "
How might I go about reading the serial info, separating the regular text at the start from the data for the array, and then calling the two seperate funtions as a result?
Note: I need to be able to deal with all three of the following string examples:
"Some Data"
"Some Data"
""
So the system nees to make a call on whether its seeing some data that I reference in one function, the data for the array, or both.
TIA