Anyone up for being paid to learn serial coms?

forstp

Member
Licensed User
Longtime User
I have a FDTI device connected to a Arduino mini.

The arduino will send out a serial string
The string contains, a 10 bit identifier number, 1 of Byte, 4 of 10 bit integers, 2 of reals, and 2 of Dint's

String Form
ID#Byte1#INT1#INT2#INT3#INT4#Real1#Real2#Dint1#Dint2

Could someone please write an App that will read the data and display it in textboxes for further processing.
I am open to suggestion if there is an easier way to format to string.

Thanks for reading.
Please make me an offer, I would like it done fast, I will pay fast.
 

Beja

Expert
Licensed User
Longtime User
Hi,
Since the Arduino is sending it as single line of string type, then there is nothing special in there.. you will:

1- receive it as string
2- parse it in the different text boxes
3- convert the content of each text box to the data type you wish.
4- happy processing!
 

forstp

Member
Licensed User
Longtime User
Thanks Beja,

I appreciate its fairly simple. I am not that good a programmer, and it will take me a while to get it all going. I don't really have the time at the moment without mainlining some caffeine and doing it when I should be sleeping. I actually would love to take the time to play with it and get it going.
 
Top