How to parse this data from external devices

Good background information in this Serial Input Basics tutorial.

If you store all those data bytes in a character array, with the 0xFA byte in element zero, then the data of interest can be rearranged as an integer thusly:

int data = (array[5]<<8) | array[4];